aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/obscuren/otto/console.go
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/github.com/obscuren/otto/console.go')
-rw-r--r--Godeps/_workspace/src/github.com/obscuren/otto/console.go51
1 files changed, 0 insertions, 51 deletions
diff --git a/Godeps/_workspace/src/github.com/obscuren/otto/console.go b/Godeps/_workspace/src/github.com/obscuren/otto/console.go
deleted file mode 100644
index 30333ad08..000000000
--- a/Godeps/_workspace/src/github.com/obscuren/otto/console.go
+++ /dev/null
@@ -1,51 +0,0 @@
-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 UndefinedValue()
-}
-
-func builtinConsole_error(call FunctionCall) Value {
- fmt.Fprintln(os.Stdout, formatForConsole(call.ArgumentList))
- return UndefinedValue()
-}
-
-// Nothing happens.
-func builtinConsole_dir(call FunctionCall) Value {
- return UndefinedValue()
-}
-
-func builtinConsole_time(call FunctionCall) Value {
- return UndefinedValue()
-}
-
-func builtinConsole_timeEnd(call FunctionCall) Value {
- return UndefinedValue()
-}
-
-func builtinConsole_trace(call FunctionCall) Value {
- return UndefinedValue()
-}
-
-func builtinConsole_assert(call FunctionCall) Value {
- return UndefinedValue()
-}
-
-func (runtime *_runtime) newConsole() *_object {
-
- return newConsoleObject(runtime)
-}