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:
17
src/jvmMain/kotlin/mtmc/lang/sea/ast/ExpressionAccess.java
Normal file
17
src/jvmMain/kotlin/mtmc/lang/sea/ast/ExpressionAccess.java
Normal file
@@ -0,0 +1,17 @@
|
||||
package mtmc.lang.sea.ast;
|
||||
|
||||
import mtmc.lang.sea.SeaType;
|
||||
import mtmc.lang.sea.Token;
|
||||
|
||||
public final class ExpressionAccess extends Expression {
|
||||
public final Expression value;
|
||||
public final Token access;
|
||||
public final Token prop;
|
||||
|
||||
public ExpressionAccess(Expression value, Token access, Token prop, SeaType type) {
|
||||
super(value.start, prop, type);
|
||||
this.value = value;
|
||||
this.access = access;
|
||||
this.prop = prop;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user