51
vendor/github.com/robertkrimen/otto/console.go
generated
vendored
Normal file
51
vendor/github.com/robertkrimen/otto/console.go
generated
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
package otto
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
"strings"
|
||||
)
|
||||
|
||||
func formatForConsole(argumentList []Value) string {
|
||||
output := []string{}
|
||||
for _, argument := range argumentList {
|
||||
output = append(output, fmt.Sprintf("%v", argument))
|
||||
}
|
||||
return strings.Join(output, " ")
|
||||
}
|
||||
|
||||
func builtinConsole_log(call FunctionCall) Value {
|
||||
fmt.Fprintln(os.Stdout, formatForConsole(call.ArgumentList))
|
||||
return Value{}
|
||||
}
|
||||
|
||||
func builtinConsole_error(call FunctionCall) Value {
|
||||
fmt.Fprintln(os.Stdout, formatForConsole(call.ArgumentList))
|
||||
return Value{}
|
||||
}
|
||||
|
||||
// Nothing happens.
|
||||
func builtinConsole_dir(call FunctionCall) Value {
|
||||
return Value{}
|
||||
}
|
||||
|
||||
func builtinConsole_time(call FunctionCall) Value {
|
||||
return Value{}
|
||||
}
|
||||
|
||||
func builtinConsole_timeEnd(call FunctionCall) Value {
|
||||
return Value{}
|
||||
}
|
||||
|
||||
func builtinConsole_trace(call FunctionCall) Value {
|
||||
return Value{}
|
||||
}
|
||||
|
||||
func builtinConsole_assert(call FunctionCall) Value {
|
||||
return Value{}
|
||||
}
|
||||
|
||||
func (runtime *_runtime) newConsole() *_object {
|
||||
|
||||
return newConsoleObject(runtime)
|
||||
}
|
Reference in New Issue
Block a user