gecko-dev/js/js2/java/JSValue.java
rogerl%netscape.com c6788416d7 #Not a part of SeaMonkey
New.
1999-04-26 22:50:50 +00:00

17 lines
296 B
Java

class JSValue extends ExpressionNode {
JSValue(String aType, String aValue)
{
type = aType;
value = aValue;
}
String print(String indent)
{
return indent + "JSValue " + type + " : " + value + "\n";
}
String type;
String value;
}