-
In grammar I would like to re-implement in Langium I need
First two are quite easy and described in examples. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hey @anderay, Langium supports lazily resolving references during the scoping phase. That's how we build most non-trivial scoping systems. See our type system based scoping guide for some guidance. You can also take a look at the langium-lox example language to see this in action. |
Beta Was this translation helpful? Give feedback.
-
Good example, thx. |
Beta Was this translation helpful? Give feedback.
Hey @anderay,
Langium supports lazily resolving references during the scoping phase. That's how we build most non-trivial scoping systems. See our type system based scoping guide for some guidance. You can also take a look at the langium-lox example language to see this in action.