diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2021-04-19 22:37:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-19 22:37:09 +0200 |
commit | 3b80f0dc8ef2bc9d2a981a7c92a6355dfc72b7ef (patch) | |
tree | 343dfdc727acde6e8e349661a94c208d1ceda9c0 /compiler/ic/ic.nim | |
parent | 24abe10aa8cdf3daa69854bba403ad4cee527503 (diff) | |
download | Nim-3b80f0dc8ef2bc9d2a981a7c92a6355dfc72b7ef.tar.gz |
IC navigator: added support for include files (#17784)
* ic fixed navigator crash when track wrong/missed Also fixed an issue with getNimcacheDir not observing the outDir. * closer, but not sure how to test[skip ci][ci skip] * IC navigator: added support for include files * update * make posix happy via expandFilename * update Co-authored-by: Saem Ghani <saemghani+github@gmail.com>
Diffstat (limited to 'compiler/ic/ic.nim')
-rw-r--r-- | compiler/ic/ic.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/ic/ic.nim b/compiler/ic/ic.nim index a23685be7..d9a8756f1 100644 --- a/compiler/ic/ic.nim +++ b/compiler/ic/ic.nim @@ -29,7 +29,7 @@ type PackedModule* = object ## the parts of a PackedEncoder that are part of the .rod file definedSymbols: string moduleFlags: TSymFlags - includes: seq[(LitId, string)] # first entry is the module filename itself + includes*: seq[(LitId, string)] # first entry is the module filename itself imports: seq[LitId] # the modules this module depends on toReplay*: PackedTree # pragmas and VM specific state to replay. topLevel*: PackedTree # top level statements |