Package com. github. adriantodt. lin. ast. node. access
Types
Assign Node
Link copied to clipboard
data class AssignNode(name: String, value: Expr, section: Section?) : Node
Content copied to clipboard
Identifier Expr
Link copied to clipboard
Property Access Expr
Link copied to clipboard
data class PropertyAccessExpr(target: Expr, nullSafe: Boolean, name: String, section: Section?) : Expr
Content copied to clipboard
Property Assign Node
Link copied to clipboard
Subscript Access Expr
Link copied to clipboard
data class SubscriptAccessExpr(target: Expr, arguments: List<Expr>, section: Section?) : Expr
Content copied to clipboard
Subscript Assign Node
Link copied to clipboard