Lines Matching refs:POSTFIX
35 (ConsumeDelimiter, SetState(&POSTFIX)),
51 (Keyword("_"), SetState(&POSTFIX)),
61 (ConsumeLiteral, SetState(&POSTFIX)),
65 static POSTFIX: [(Input, Action); 10] = [ constant
66 (Keyword("as"), SetState(&[(ExpectType, SetState(&POSTFIX))])),
70 (Punct("?"), SetState(&POSTFIX)),
74 (ConsumeDelimiter, SetState(&POSTFIX)),
81 (ConsumeBrace, SetState(&POSTFIX)),
84 static BLOCK: [(Input, Action); 1] = [(ConsumeBrace, SetState(&POSTFIX))];
94 (Otherwise, SetState(&POSTFIX)),
119 (ConsumeBrace, SetState(&POSTFIX)),
123 (ConsumeLifetime, SetState(&POSTFIX)),
124 (Otherwise, SetState(&POSTFIX)),
128 (Keyword("await"), SetState(&POSTFIX)),
130 (ConsumeLiteral, SetState(&POSTFIX)),
142 static METHOD: [(Input, Action); 1] = [(ExpectTurbofish, SetState(&POSTFIX))];
148 (Otherwise, SetState(&POSTFIX)),
181 (Otherwise, SetState(&POSTFIX)),
192 (Otherwise, SetState(&POSTFIX)),
259 Action::DecDepth => (depth -= 1, &POSTFIX).1, in scan_expr()