Home
last modified time | relevance | path

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

/third_party/python/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.gram18 NegativeLookahead,
99 | '!' ~ atom {NegativeLookahead(atom)}
Dvalidator.py11 NegativeLookahead,
Dpython_generator.py14 NegativeLookahead,
88 def visit_NegativeLookahead(self, node: NegativeLookahead) -> Tuple[None, str]: argument
Dgrammar_parser.py24 NegativeLookahead,
523 return NegativeLookahead ( atom )
Dc_generator.py19 NegativeLookahead,
257 def visit_NegativeLookahead(self, node: NegativeLookahead) -> FunctionCall: argument
Dgrammar.py334 class NegativeLookahead(Lookahead): class