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

Method parse_print

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

Source from the content-addressed store, hash-verified

385 return node
386
387 def parse_print(self):
388 node = nodes.Output(lineno=next(self.stream).lineno)
389 node.nodes = []
390 while self.stream.current.type != 'block_end':
391 if node.nodes:
392 self.stream.expect('comma')
393 node.nodes.append(self.parse_expression())
394 return node
395
396 def parse_assign_target(self, with_tuple=True, name_only=False,
397 extra_end_rules=None, with_namespace=False):

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