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