diff options
author | Zahary Karadjov <zahary@gmail.com> | 2013-05-04 23:02:03 +0300 |
---|---|---|
committer | Zahary Karadjov <zahary@gmail.com> | 2013-05-04 23:02:03 +0300 |
commit | 519d5b834ad9601c487b4cc183f80b713e2da53f (patch) | |
tree | 3155f9976a7ead7a265d18f1c3b5335921d95dc3 /compiler/msgs.nim | |
parent | 34cd22ba72e6b93b4f095d6424206627137d0ec6 (diff) | |
download | Nim-519d5b834ad9601c487b4cc183f80b713e2da53f.tar.gz |
experimental support for answering idetools --def requests from
an in-memory index built during compilation in caas mode
Diffstat (limited to 'compiler/msgs.nim')
-rw-r--r-- | compiler/msgs.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/msgs.nim b/compiler/msgs.nim index 6062ebd7f..a1eaf23bb 100644 --- a/compiler/msgs.nim +++ b/compiler/msgs.nim @@ -606,6 +606,7 @@ proc `??`* (info: TLineInfo, filename: string): bool = result = filename in info.toFilename var checkPoints*: seq[TLineInfo] = @[] +var optTrackPos*: TLineInfo proc addCheckpoint*(info: TLineInfo) = checkPoints.add(info) |