New.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
class JSString extends JSValue {
|
||||
|
||||
JSString(String p)
|
||||
{
|
||||
s = p;
|
||||
}
|
||||
|
||||
void eval(Environment theEnv)
|
||||
{
|
||||
theEnv.theStack.push(new StackValue(s));
|
||||
}
|
||||
|
||||
|
||||
String s;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user