summary refs log tree commit diff stats
path: root/compiler/modulegraphs.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2018-06-01 22:11:32 +0200
committerAndreas Rumpf <rumpf_a@web.de>2018-06-01 22:11:32 +0200
commitcae19738562f14fbb76004748bed8d2f337d6f0b (patch)
treea2d965f68a1e0d2d5617b74166c7798bc77d69f0 /compiler/modulegraphs.nim
parent61fb83ecbb4c691c03d500f6c71499e59a67cef2 (diff)
downloadNim-cae19738562f14fbb76004748bed8d2f337d6f0b.tar.gz
document how the incremental compilation scheme could work
Diffstat (limited to 'compiler/modulegraphs.nim')
-rw-r--r--compiler/modulegraphs.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/modulegraphs.nim b/compiler/modulegraphs.nim
index 7c9837f54..02307ca9f 100644
--- a/compiler/modulegraphs.nim
+++ b/compiler/modulegraphs.nim
@@ -47,7 +47,7 @@ type
     doStopCompile*: proc(): bool {.closure.}
     usageSym*: PSym # for nimsuggest
     owners*: seq[PSym]
-    methods*: seq[tuple[methods: TSymSeq, dispatcher: PSym]]
+    methods*: seq[tuple[methods: TSymSeq, dispatcher: PSym]] # needs serialization!
     systemModule*: PSym
     sysTypes*: array[TTypeKind, PType]
     compilerprocs*: TStrTable
50 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208