nitc :: ABinBoolExpr :: defaultinit
# Something that is binary boolean expression
abstract class ABinBoolExpr
super ABoolExpr
# The first boolean operand
var n_expr: AExpr is writable, noinit
# The operator
var n_op: Token is writable, noinit
# The second boolean operand
var n_expr2: AExpr is writable, noinit
end
src/parser/parser_nodes.nit:2167,1--2179,3