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

Method dump_stores

deps/v8/third_party/jinja2/idtracking.py:147–158  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

145 self.loads[target] = (VAR_LOAD_RESOLVE, name)
146
147 def dump_stores(self) -> t.Dict[str, str]:
148 rv: t.Dict[str, str] = {}
149 node: t.Optional["Symbols"] = self
150
151 while node is not None:
152 for name in sorted(node.stores):
153 if name not in rv:
154 rv[name] = self.find_ref(name) # type: ignore
155
156 node = node.parent
157
158 return rv
159
160 def dump_param_targets(self) -> t.Set[str]:
161 rv = set()

Callers 1

dump_local_contextMethod · 0.45

Calls 2

find_refMethod · 0.95
sortedFunction · 0.85

Tested by

no test coverage detected