diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2024-05-28 12:18:15 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-28 12:18:15 +0100 |
| commit | 74524b6050d340840fcd636cd94b48e4187695aa (patch) | |
| tree | 217644e5ec4c7fa35baca19d68392e6c67069033 /src/entity.cpp | |
| parent | 23852c16be2ed8ae1618c1d951c9904eb40a4198 (diff) | |
| parent | d91054b615e5e185ded106e4903cdd66b2c4f582 (diff) | |
Merge pull request #3644 from odin-lang/foreign-import-improvements
Allow `foreign import` import paths to be evaluated in the semantic phase rather than parsing
Diffstat (limited to 'src/entity.cpp')
| -rw-r--r-- | src/entity.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/entity.cpp b/src/entity.cpp index 8a7417006..1461b96d7 100644 --- a/src/entity.cpp +++ b/src/entity.cpp @@ -266,6 +266,7 @@ struct Entity { Scope *scope; } ImportName; struct { + Ast *decl; Slice<String> paths; String name; i64 priority_index; |