staticCoords property

Expando<StaticCoord> staticCoords
final

S1/S3c (plan_3 §9.1 / §9.3): per-identifier-use static lexical coordinates produced by StaticResolver. A coordinate is emitted only for an eligible innermost-block local (depth 0); visitSimpleIdentifier reads such a use straight from the current frame's slot array via Environment.getSlot (one Expando hop + one list index, no name hashing — note-6 §10.4). Empty until resolveStaticCoordinates runs; nodes with no entry take the name-keyed Environment.get walk.

Implementation

final Expando<StaticCoord> staticCoords = Expando<StaticCoord>();