mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-14 22:13:31 +00:00
c6788416d7
New.
17 lines
296 B
Java
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;
|
|
|
|
} |