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

Method parse_pow

tools/inspector_protocol/jinja2/parser.py:526–534  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

524 return left
525
526 def parse_pow(self):
527 lineno = self.stream.current.lineno
528 left = self.parse_unary()
529 while self.stream.current.type == 'pow':
530 next(self.stream)
531 right = self.parse_unary()
532 left = nodes.Pow(left, right, lineno=lineno)
533 lineno = self.stream.current.lineno
534 return left
535
536 def parse_unary(self, with_filter=True):
537 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