nitc :: AIfExpr :: defaultinit
# A `if` statement
class AIfExpr
super AExpr
# The `if` keyword
var n_kwif: TKwif is writable, noinit
# The expression used as the condition of the `if`
var n_expr: AExpr is writable, noinit
# The `then` keyword
var n_kwthen: TKwthen is writable, noinit
# The body of the `then` part
var n_then: nullable AExpr = null is writable
# The `else` keyword
var n_kwelse: nullable TKwelse = null is writable
# The body of the `else` part
var n_else: nullable AExpr = null is writable
end
src/parser/parser_nodes.nit:1957,1--1978,3