diff options
Diffstat (limited to 'source/slang/compiler.h')
| -rw-r--r-- | source/slang/compiler.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/slang/compiler.h b/source/slang/compiler.h index 41ba027c6..ca82950be 100644 --- a/source/slang/compiler.h +++ b/source/slang/compiler.h @@ -399,7 +399,7 @@ namespace Slang // This is a list of unique modules loaded, in the order they were encountered. List<RefPtr<LoadedModule> > loadedModulesList; - // Map from the path of a module file to its definition + // Map from the path (or uniqueIdentity if available) of a module file to its definition Dictionary<String, RefPtr<LoadedModule>> mapPathToLoadedModule; // Map from the logical name of a module to its definition @@ -509,6 +509,8 @@ namespace Slang mSink.sourceManager = sm; } + void setFileSystem(ISlangFileSystem* fileSystem); + /// During propagation of an exception for an internal /// error, note that this source location was involved void noteInternalErrorLoc(SourceLoc const& loc); |
