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

Method parse_print

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

Source from the content-addressed store, hash-verified

444 return node
445
446 def parse_print(self) -> nodes.Output:
447 node = nodes.Output(lineno=next(self.stream).lineno)
448 node.nodes = []
449 while self.stream.current.type != "block_end":
450 if node.nodes:
451 self.stream.expect("comma")
452 node.nodes.append(self.parse_expression())
453 return node
454
455 @typing.overload
456 def parse_assign_target(

Callers

nothing calls this directly

Calls 4

parse_expressionMethod · 0.95
nextFunction · 0.50
expectMethod · 0.45
appendMethod · 0.45

Tested by

no test coverage detected