Lines Matching refs:a
59 # Do nothing - represents a binary op with no textual representation.
60 # For example: `2a`, which is equivalent to `2 * a`.
124 # Check if there's a number literal on the LHS of a dot operator.
127 for (i, a) in enumerate(cst)
128 if CSTParser.isoperator(a) && CSTParser.isdotted(a) && CSTParser.isnumber(cst[i-1])
135 for (i, a) in enumerate(cst)
136 nws_op = precedence(a) == CSTParser.TimesOp ? 0 : nws
137 if CSTParser.isoperator(a)
139 add_node!(t, pretty(style, a, s), s, join_lines=true)
145 elseif is_opcall(a)
148 pretty(style, a, s, nospace=nospace, nonest=nonest),
152 elseif i == length(cst) - 1 && is_punc(a) && is_punc(cst[i+1])
153 add_node!(t, pretty(style, a, s), s, join_lines=true)
155 add_node!(t, pretty(style, a, s), s, join_lines=true)