summaryrefslogtreecommitdiff
path: root/source/slang/compiler.h
diff options
context:
space:
mode:
authorTim Foley <tfoleyNV@users.noreply.github.com>2017-06-26 12:04:54 -0700
committerGitHub <noreply@github.com>2017-06-26 12:04:54 -0700
commit3f316dcbd9274efc74f817cf36f17a511ff2e21e (patch)
tree185210d30a7887df823bb0c6d817d3feb2ebe675 /source/slang/compiler.h
parentd506737b8b00bcc89adf937994ceb6df4509c98a (diff)
parent07f9b9ec7c9be6a0eff65ef327d2a0fee262aed7 (diff)
Merge pull request #42 from tfoleyNV/reflect-imported
Reflect imported code
Diffstat (limited to 'source/slang/compiler.h')
-rw-r--r--source/slang/compiler.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/slang/compiler.h b/source/slang/compiler.h
index 36fc5f42f..3f45ea5c7 100644
--- a/source/slang/compiler.h
+++ b/source/slang/compiler.h
@@ -211,7 +211,8 @@ namespace Slang
RefPtr<ProgramLayout> layout;
// Modules that have been dynamically loaded via `import`
- Dictionary<String, RefPtr<ProgramSyntaxNode>> loadedModules;
+ Dictionary<String, RefPtr<ProgramSyntaxNode>> loadedModulesMap;
+ List<RefPtr<ProgramSyntaxNode> > loadedModulesList;
CompileRequest(Session* session)