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

Method load

tools/inspector_protocol/jinja2/loaders.py:402–408  ·  view source on GitHub ↗
(self, environment, name, globals=None)

Source from the content-addressed store, hash-verified

400
401 @internalcode
402 def load(self, environment, name, globals=None):
403 for loader in self.loaders:
404 try:
405 return loader.load(environment, name, globals)
406 except TemplateNotFound:
407 pass
408 raise TemplateNotFound(name)
409
410 def list_templates(self):
411 found = set()

Callers

nothing calls this directly

Calls 2

TemplateNotFoundClass · 0.90
loadMethod · 0.45

Tested by

no test coverage detected