JSValue changes, closing in on JSObject API. Began 'correct' semantic

implementation for various operators.
This commit is contained in:
rogerl@netscape.com
1999-05-25 21:49:40 +00:00
parent 5a9bce8a7e
commit 6fed77b487
14 changed files with 291 additions and 146 deletions
+5 -1
View File
@@ -10,6 +10,10 @@ class JSString extends JSValue {
theEnv.theStack.push(this);
}
void typeof(Environment theEnv) {
theEnv.theStack.push(new JSString("string"));
}
void add(Environment theEnv)
{
JSString vR = theEnv.theStack.pop().toJSString();
@@ -88,6 +92,6 @@ class JSString extends JSValue {
return this;
}
String s;
protected String s;
}