main print console output for js statement given by the exec argument
This commit is contained in:
		@@ -232,15 +232,10 @@ func (self *jsre) loadAutoCompletion() {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (self *jsre) batch(statement string) {
 | 
			
		||||
	val, err := self.re.Run(statement)
 | 
			
		||||
	err := self.re.EvalAndPrettyPrint(statement)
 | 
			
		||||
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		fmt.Printf("error: %v", err)
 | 
			
		||||
	} else if val.IsDefined() && val.IsObject() {
 | 
			
		||||
		obj, _ := self.re.Get("ret_result")
 | 
			
		||||
		fmt.Printf("%v", obj)
 | 
			
		||||
	} else if val.IsDefined() {
 | 
			
		||||
		fmt.Printf("%v", val)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if self.atexit != nil {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user