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:
14
src/jvmMain/kotlin/mtmc/lang/sea/ast/StatementDoWhile.java
Normal file
14
src/jvmMain/kotlin/mtmc/lang/sea/ast/StatementDoWhile.java
Normal file
@@ -0,0 +1,14 @@
|
||||
package mtmc.lang.sea.ast;
|
||||
|
||||
import mtmc.lang.sea.Token;
|
||||
|
||||
public final class StatementDoWhile extends Statement {
|
||||
public final Statement body;
|
||||
public final Expression condition;
|
||||
|
||||
public StatementDoWhile(Token start, Statement body, Expression condition, Token end) {
|
||||
super(start, end);
|
||||
this.body = body;
|
||||
this.condition = condition;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user