implementation for various operators. git-svn-id: svn://10.0.0.236/trunk@32626 18797224-902f-48f8-a5cc-f745e15eee43
8 lines
148 B
Java
8 lines
148 B
Java
abstract class JSNumber extends JSValue {
|
|
|
|
void typeof(Environment theEnv) {
|
|
theEnv.theStack.push(new JSString("number"));
|
|
}
|
|
|
|
|
|
} |