Package com.github.adriantodt.lin.ast.node.misc

Types

BinaryOperation
Link copied to clipboard
data class BinaryOperation(left: Expr, right: Expr, operator: BinaryOperationType, section: Section?) : Expr
EnsureNotNullExpr
Link copied to clipboard
data class EnsureNotNullExpr(value: Expr, section: Section?) : Expr
TypeofExpr
Link copied to clipboard
data class TypeofExpr(value: Expr, section: Section?) : Expr
UnaryOperation
Link copied to clipboard
class UnaryOperation(target: Expr, operator: UnaryOperationType, section: Section?) : Expr