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

Method parse_pow

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

Source from the content-addressed store, hash-verified

614 return left
615
616 def parse_pow(self) -> nodes.Expr:
617 lineno = self.stream.current.lineno
618 left = self.parse_unary()
619 while self.stream.current.type == "pow":
620 next(self.stream)
621 right = self.parse_unary()
622 left = nodes.Pow(left, right, lineno=lineno)
623 lineno = self.stream.current.lineno
624 return left
625
626 def parse_unary(self, with_filter: bool = True) -> nodes.Expr:
627 token_type = self.stream.current.type

Callers 1

parse_math2Method · 0.95

Calls 2

parse_unaryMethod · 0.95
nextFunction · 0.50

Tested by

no test coverage detected