Mozilla/mozilla/js/js2/java/JSValue.java
rogerl%netscape.com 612f4ccc6c #Not a part of SeaMonkey
New.


git-svn-id: svn://10.0.0.236/trunk@29270 18797224-902f-48f8-a5cc-f745e15eee43
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;
}