MCPcopy Index your code
hub / github.com/nodejs/node / parse_not

Method parse_not

deps/v8/third_party/jinja2/parser.py:555–559  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

553 return left
554
555 def parse_not(self) -> nodes.Expr:
556 if self.stream.current.test("name:not"):
557 lineno = next(self.stream).lineno
558 return nodes.Not(self.parse_not(), lineno=lineno)
559 return self.parse_compare()
560
561 def parse_compare(self) -> nodes.Expr:
562 lineno = self.stream.current.lineno

Callers 1

parse_andMethod · 0.95

Calls 3

parse_compareMethod · 0.95
nextFunction · 0.50
testMethod · 0.45

Tested by

no test coverage detected