eclipse-langium / langium-website

Source of langium.org
https://langium.org/
MIT License
14 stars 34 forks source link

[Recipe] File based imports #234

Closed msujew closed 3 weeks ago

msujew commented 3 months ago

We have had a few questions in the past related to imports from other files, similar to how TypeScript/JavaScript does it. I.e. how to resolve cross references such as:

import { value } from './file.dsl';

print(value); // <-- How to resolve the variable `value`