12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- 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 builtinConsoleLog(call FunctionCall) Value {
- fmt.Fprintln(os.Stdout, formatForConsole(call.ArgumentList)) //nolint:errcheck // Nothing we can do if this fails.
- return Value{}
- }
- func builtinConsoleError(call FunctionCall) Value {
- fmt.Fprintln(os.Stdout, formatForConsole(call.ArgumentList)) //nolint:errcheck // Nothing we can do if this fails.
- return Value{}
- }
- // Nothing happens.
- func builtinConsoleDir(call FunctionCall) Value {
- return Value{}
- }
- func builtinConsoleTime(call FunctionCall) Value {
- return Value{}
- }
- func builtinConsoleTimeEnd(call FunctionCall) Value {
- return Value{}
- }
- func builtinConsoleTrace(call FunctionCall) Value {
- return Value{}
- }
- func builtinConsoleAssert(call FunctionCall) Value {
- return Value{}
- }
|