MCPcopy
hub / github.com/witheve/Eve / _scanScan

Method _scanScan

src/runtime/analyzer.ts:151–161  ·  view source on GitHub ↗
(context: AnalysisContext, node)

Source from the content-addressed store, hash-verified

149 }
150
151 _scanScan(context: AnalysisContext, node) {
152 if(node.attribute === undefined || node.attribute.type === "variable") {
153 let value;
154 if(node.value !== undefined) {
155 value = context.value(node.value);
156 }
157 let id = context.scan(node, node.scopes, context.value(node.entity), undefined, value);
158 } else {
159 let id = context.scan(node, node.scopes, context.value(node.entity), context.value(node.attribute), context.value(node.value));
160 }
161 }
162
163 _scanIf(context: AnalysisContext, ifExpression) {
164

Callers 1

_scansMethod · 0.95

Calls 2

valueMethod · 0.80
scanMethod · 0.45

Tested by

no test coverage detected