Lines Matching refs:op
22 op = cst[2]
24 nonest = nonest || CSTParser.is_colon(op)
27 (op.val == "<:" || op.val == ">:") &&
30 elseif CSTParser.is_colon(op)
41 if CSTParser.is_colon(op) &&
58 if op.fullspan == 0
59 # Do nothing - represents a binary op with no textual representation.
61 elseif CSTParser.is_exor(op)
62 add_node!(t, pretty(style, op, s), s, join_lines=true)
63 elseif (CSTParser.isnumber(cst[1]) || is_circumflex_accent(op)) &&
64 CSTParser.isdotted(op)
66 add_node!(t, pretty(style, op, s), s, join_lines=true)
68 elseif !(CSTParser.is_in(op) || CSTParser.is_elof(op)) && (
70 !CSTParser.is_anon_func(op) && precedence(op) in (
78 add_node!(t, pretty(style, op, s), s, join_lines=true)
79 elseif op.val in RADICAL_OPS
80 add_node!(t, pretty(style, op, s), s, join_lines=true)
83 add_node!(t, pretty(style, op, s), s, join_lines=true)
93 if CSTParser.is_colon(op) &&