MCPcopy Create free account
hub / github.com/Moddable-OpenSource/moddable / fxScopeArrow

Function fxScopeArrow

xs/sources/xsScope.c:192–208  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

190}
191
192void fxScopeArrow(txScope* self)
193{
194 if (self->token == XS_TOKEN_EVAL) {
195 }
196 else if (self->token == XS_TOKEN_FUNCTION) {
197 if (self->node->flags & mxArrowFlag) {
198 self->node->flags |= mxDefaultFlag;
199 if (self->scope)
200 fxScopeArrow(self->scope);
201 }
202 }
203 else if (self->token == XS_TOKEN_PROGRAM) {
204 }
205 else if (self->scope) {
206 fxScopeArrow(self->scope);
207 }
208}
209
210void fxScopeBindDefineNodes(txScope* self, void* param)
211{

Callers 3

fxSuperNodeBindFunction · 0.85
fxTargetNodeBindFunction · 0.85
fxThisNodeBindFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected