mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 00:55:37 +00:00
8 lines
136 B
Java
8 lines
136 B
Java
abstract class JSNumber extends JSValue {
|
|
|
|
JSValue typeof(Environment theEnv) {
|
|
return new JSString("number");
|
|
}
|
|
|
|
|
|
} |