(node: AstNode, document: LangiumDocument<AstNode>, extraScopes: ScopeProvider[])
| 502 | } |
| 503 | |
| 504 | private resolveDefault(node: AstNode, document: LangiumDocument<AstNode>, extraScopes: ScopeProvider[]) { |
| 505 | AstUtils.streamReferences(node).forEach((ref) => { |
| 506 | this.linkReference(ref, document, extraScopes); |
| 507 | }); |
| 508 | for (const child of AstUtils.streamContents(node)) { |
| 509 | this.resolve(child, document, extraScopes); |
| 510 | } |
| 511 | } |
| 512 | |
| 513 | //#endregion |
| 514 |
no test coverage detected