8171d58071
add error expression and error object
18 lines
298 B
Go
18 lines
298 B
Go
package objects
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func builtinIsUndefined(args ...Object) (Object, error) {
|
|
if len(args) != 1 {
|
|
return nil, fmt.Errorf("wrong number of arguments (got=%d, want=1)", len(args))
|
|
}
|
|
|
|
switch args[0].(type) {
|
|
case *Undefined:
|
|
return TrueValue, nil
|
|
}
|
|
|
|
return FalseValue, nil
|
|
}
|