mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-12 23:12:21 +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");
|
|
}
|
|
|
|
|
|
} |