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

Function make_module_async

tools/inspector_protocol/jinja2/asyncsupport.py:133–138  ·  view source on GitHub ↗
(self, vars=None, shared=False, locals=None)

Source from the content-addressed store, hash-verified

131
132
133async def make_module_async(self, vars=None, shared=False, locals=None):
134 context = self.new_context(vars, shared, locals)
135 body_stream = []
136 async for item in self.root_render_func(context):
137 body_stream.append(item)
138 return TemplateModule(self, context, body_stream)
139
140
141def patch_template():

Callers

nothing calls this directly

Calls 3

TemplateModuleClass · 0.90
new_contextMethod · 0.45
appendMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…