#Not a part of SeaMonkey

New.


git-svn-id: svn://10.0.0.236/trunk@29270 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rogerl%netscape.com
1999-04-26 22:50:50 +00:00
parent 28d88fbe8c
commit 612f4ccc6c
5 changed files with 101 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
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;
}