aboutsummaryrefslogblamecommitdiffstats
path: root/Godeps/_workspace/src/github.com/robertkrimen/otto/console.go
blob: 948face7753353504e4a078261919be32bfb44c4 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                    
                      



                                                                    
                      



                                                  
                      


                                                   
                      


                                                      
                      


                                                    
                      


                                                     
                      





                                                
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)
}