From ea2d35c6084e1ca9cabee9a91ed16696819e5b51 Mon Sep 17 00:00:00 2001 From: Ed_ Date: Thu, 30 May 2024 13:27:37 -0400 Subject: [PATCH] Update ast_kinds.hpp with foreign import changes --- codegen/ast_kinds.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/codegen/ast_kinds.hpp b/codegen/ast_kinds.hpp index 1f9f206f5..0b2b261ba 100644 --- a/codegen/ast_kinds.hpp +++ b/codegen/ast_kinds.hpp @@ -457,7 +457,8 @@ struct ImportDecl { char const* desc_ForeignImportDecl = "foreign import declaration"; struct ForeignImportDecl { Token token; - Slice filepaths; + Slice filepaths; + bool multiple_filepaths; Token library_name; String collection_name; Slice fullpaths;