Home
last modified time | relevance | path

Searched refs:NegativeLookahead (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Tools/peg_generator/pegen/
Dfirst_sets.py20 NegativeLookahead,
55 if isinstance(other.item, NegativeLookahead):
69 if not isinstance(other.item, (Opt, NegativeLookahead, Repeat0)):
86 def visit_NegativeLookahead(self, item: NegativeLookahead) -> Set[str]: argument
Dmetagrammar.gram17 NegativeLookahead,
92 | '!' ~ atom {NegativeLookahead(atom)}
Dpython_generator.py13 NegativeLookahead,
90 def visit_NegativeLookahead(self, node: NegativeLookahead) -> Tuple[None, str]: argument
Dgrammar_parser.py26 NegativeLookahead,
459 return NegativeLookahead ( atom )
Dc_generator.py17 NegativeLookahead,
246 def visit_NegativeLookahead(self, node: NegativeLookahead) -> FunctionCall: argument
Dgrammar.py316 class NegativeLookahead(Lookahead): class