generated from rnentjes/kotlin-server-web-undertow
Refactor: Restructure project package hierarchy and add initial implementation for assembler instructions, shell commands, and exception handling.
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package mtmc.lang.sea.ast;
|
||||
|
||||
public final class StatementExpression extends Statement {
|
||||
public final Expression expression;
|
||||
|
||||
public StatementExpression(Expression expression) {
|
||||
super(expression.start, expression.end);
|
||||
this.expression = expression;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user