-
Notifications
You must be signed in to change notification settings - Fork 586
/
console.go
46 lines (37 loc) · 1007 Bytes
/
console.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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{}
}