diff options
| author | gingerBill <bill@gingerbill.org> | 2024-05-27 23:51:43 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-05-27 23:51:43 +0100 |
| commit | 38fffff06a76004a02bedc34172aa5107784c03f (patch) | |
| tree | 37c51ad36c53776e909c3c4290857e1838667ca9 /src/parser.hpp | |
| parent | 74ac2667e7fdc7bde1a52c0249adb9b17d76dc9e (diff) | |
Begin moving `foreign import` import paths to be evaluated in the semantic phase rather than parsing.
Diffstat (limited to 'src/parser.hpp')
| -rw-r--r-- | src/parser.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.hpp b/src/parser.hpp index 5820275c8..1e07cfd59 100644 --- a/src/parser.hpp +++ b/src/parser.hpp @@ -631,7 +631,7 @@ AST_KIND(_DeclBegin, "", bool) \ }) \ AST_KIND(ForeignImportDecl, "foreign import declaration", struct { \ Token token; \ - Slice<Token> filepaths; \ + Slice<Ast *> filepaths; \ Token library_name; \ String collection_name; \ Slice<String> fullpaths; \ |