summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2021-01-02 07:30:39 +0100
committerGitHub <noreply@github.com>2021-01-02 07:30:39 +0100
commit73a8b950cb6abf36a0d29c210bb7db302ae68325 (patch)
treebd018fe111180437d3fe86b5ccae5376905aab54 /tests
parent0d0e43469f060818ec09d74de5b0bb7ded891898 (diff)
downloadNim-73a8b950cb6abf36a0d29c210bb7db302ae68325.tar.gz
big steps torwards an efficient, simple IC implementation (#16543)
* reworked ID handling
* the packed AST now has its own ID mechanism
* basic serialization code works
* extract rodfiles to its own module
* rodfiles: store and compare configs
* rodfiles: store dependencies
* store config at the end
* precise dependency tracking
* dependency tracking for rodfiles
* completed loading of PSym, PType, etc
* removed dead code
* bugfix: do not realloc seqs when taking addr into an element
* make IC opt-in for now
* makes tcompilerapi green again
* final cleanups

Co-authored-by: Andy Davidoff <github@andy.disruptek.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/compilerapi/tcompilerapi.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/compilerapi/tcompilerapi.nim b/tests/compilerapi/tcompilerapi.nim
index d8489c763..ab995cb6d 100644
--- a/tests/compilerapi/tcompilerapi.nim
+++ b/tests/compilerapi/tcompilerapi.nim
@@ -18,7 +18,7 @@ import std / [os]
 
 proc initInterpreter(script: string): Interpreter =
   let std = findNimStdLibCompileTime()
-  result = createInterpreter(script , [std, parentDir(currentSourcePath),
+  result = createInterpreter(script, [std, parentDir(currentSourcePath),
     std / "pure", std / "core"])
 
 proc main() =