mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-07 23:22:43 +00:00
12 lines
161 B
Java
12 lines
161 B
Java
class ExpressionNode {
|
|
|
|
ExpressionNode()
|
|
{
|
|
}
|
|
|
|
String print(String indent)
|
|
{
|
|
return indent + "ExpressionNode" + "\n";
|
|
}
|
|
|
|
} |