mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
12 lines
161 B
Java
12 lines
161 B
Java
|
class ExpressionNode {
|
||
|
|
||
|
ExpressionNode()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
String print(String indent)
|
||
|
{
|
||
|
return indent + "ExpressionNode" + "\n";
|
||
|
}
|
||
|
|
||
|
}
|