mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
127 lines
3.7 KiB
127 lines
3.7 KiB
10 years ago
|
package otto
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
func builtinError(call FunctionCall) Value {
|
||
8 years ago
|
return toValue_object(call.runtime.newError("Error", call.Argument(0), 1))
|
||
10 years ago
|
}
|
||
|
|
||
|
func builtinNewError(self *_object, argumentList []Value) Value {
|
||
8 years ago
|
return toValue_object(self.runtime.newError("Error", valueOfArrayIndex(argumentList, 0), 0))
|
||
10 years ago
|
}
|
||
|
|
||
|
func builtinError_toString(call FunctionCall) Value {
|
||
|
thisObject := call.thisObject()
|
||
|
if thisObject == nil {
|
||
|
panic(call.runtime.panicTypeError())
|
||
|
}
|
||
|
|
||
|
name := "Error"
|
||
|
nameValue := thisObject.get("name")
|
||
|
if nameValue.IsDefined() {
|
||
|
name = nameValue.string()
|
||
|
}
|
||
|
|
||
|
message := ""
|
||
|
messageValue := thisObject.get("message")
|
||
|
if messageValue.IsDefined() {
|
||
|
message = messageValue.string()
|
||
|
}
|
||
|
|
||
|
if len(name) == 0 {
|
||
|
return toValue_string(message)
|
||
|
}
|
||
|
|
||
|
if len(message) == 0 {
|
||
|
return toValue_string(name)
|
||
|
}
|
||
|
|
||
|
return toValue_string(fmt.Sprintf("%s: %s", name, message))
|
||
|
}
|
||
|
|
||
|
func (runtime *_runtime) newEvalError(message Value) *_object {
|
||
8 years ago
|
self := runtime.newErrorObject("EvalError", message, 0)
|
||
10 years ago
|
self.prototype = runtime.global.EvalErrorPrototype
|
||
|
return self
|
||
|
}
|
||
|
|
||
|
func builtinEvalError(call FunctionCall) Value {
|
||
|
return toValue_object(call.runtime.newEvalError(call.Argument(0)))
|
||
|
}
|
||
|
|
||
|
func builtinNewEvalError(self *_object, argumentList []Value) Value {
|
||
|
return toValue_object(self.runtime.newEvalError(valueOfArrayIndex(argumentList, 0)))
|
||
|
}
|
||
|
|
||
|
func (runtime *_runtime) newTypeError(message Value) *_object {
|
||
8 years ago
|
self := runtime.newErrorObject("TypeError", message, 0)
|
||
10 years ago
|
self.prototype = runtime.global.TypeErrorPrototype
|
||
|
return self
|
||
|
}
|
||
|
|
||
|
func builtinTypeError(call FunctionCall) Value {
|
||
|
return toValue_object(call.runtime.newTypeError(call.Argument(0)))
|
||
|
}
|
||
|
|
||
|
func builtinNewTypeError(self *_object, argumentList []Value) Value {
|
||
|
return toValue_object(self.runtime.newTypeError(valueOfArrayIndex(argumentList, 0)))
|
||
|
}
|
||
|
|
||
|
func (runtime *_runtime) newRangeError(message Value) *_object {
|
||
8 years ago
|
self := runtime.newErrorObject("RangeError", message, 0)
|
||
10 years ago
|
self.prototype = runtime.global.RangeErrorPrototype
|
||
|
return self
|
||
|
}
|
||
|
|
||
|
func builtinRangeError(call FunctionCall) Value {
|
||
|
return toValue_object(call.runtime.newRangeError(call.Argument(0)))
|
||
|
}
|
||
|
|
||
|
func builtinNewRangeError(self *_object, argumentList []Value) Value {
|
||
|
return toValue_object(self.runtime.newRangeError(valueOfArrayIndex(argumentList, 0)))
|
||
|
}
|
||
|
|
||
|
func (runtime *_runtime) newURIError(message Value) *_object {
|
||
8 years ago
|
self := runtime.newErrorObject("URIError", message, 0)
|
||
10 years ago
|
self.prototype = runtime.global.URIErrorPrototype
|
||
|
return self
|
||
|
}
|
||
|
|
||
|
func (runtime *_runtime) newReferenceError(message Value) *_object {
|
||
8 years ago
|
self := runtime.newErrorObject("ReferenceError", message, 0)
|
||
10 years ago
|
self.prototype = runtime.global.ReferenceErrorPrototype
|
||
|
return self
|
||
|
}
|
||
|
|
||
|
func builtinReferenceError(call FunctionCall) Value {
|
||
|
return toValue_object(call.runtime.newReferenceError(call.Argument(0)))
|
||
|
}
|
||
|
|
||
|
func builtinNewReferenceError(self *_object, argumentList []Value) Value {
|
||
|
return toValue_object(self.runtime.newReferenceError(valueOfArrayIndex(argumentList, 0)))
|
||
|
}
|
||
|
|
||
|
func (runtime *_runtime) newSyntaxError(message Value) *_object {
|
||
8 years ago
|
self := runtime.newErrorObject("SyntaxError", message, 0)
|
||
10 years ago
|
self.prototype = runtime.global.SyntaxErrorPrototype
|
||
|
return self
|
||
|
}
|
||
|
|
||
|
func builtinSyntaxError(call FunctionCall) Value {
|
||
|
return toValue_object(call.runtime.newSyntaxError(call.Argument(0)))
|
||
|
}
|
||
|
|
||
|
func builtinNewSyntaxError(self *_object, argumentList []Value) Value {
|
||
|
return toValue_object(self.runtime.newSyntaxError(valueOfArrayIndex(argumentList, 0)))
|
||
|
}
|
||
|
|
||
|
func builtinURIError(call FunctionCall) Value {
|
||
|
return toValue_object(call.runtime.newURIError(call.Argument(0)))
|
||
|
}
|
||
|
|
||
|
func builtinNewURIError(self *_object, argumentList []Value) Value {
|
||
|
return toValue_object(self.runtime.newURIError(valueOfArrayIndex(argumentList, 0)))
|
||
|
}
|