MCPcopy Create free account
hub / github.com/nodejs/node / dump_stores

Method dump_stores

tools/inspector_protocol/jinja2/idtracking.py:130–138  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

128 self.loads[target] = (VAR_LOAD_RESOLVE, name)
129
130 def dump_stores(self):
131 rv = {}
132 node = self
133 while node is not None:
134 for name in node.stores:
135 if name not in rv:
136 rv[name] = self.find_ref(name)
137 node = node.parent
138 return rv
139
140 def dump_param_targets(self):
141 rv = set()

Callers 1

dump_local_contextMethod · 0.45

Calls 1

find_refMethod · 0.95

Tested by

no test coverage detected