diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2020-12-17 08:01:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-17 08:01:36 +0100 |
commit | 979148e863c4142a00632059f3e2a57f4ab0f960 (patch) | |
tree | 398df831eda7a739e4b57786cff248ef78088c65 /testament | |
parent | 3b963a8150e3c541859931a1ef9ecb338e46907f (diff) | |
download | Nim-979148e863c4142a00632059f3e2a57f4ab0f960.tar.gz |
refactorings to prepare the compiler for IC (#15935)
* added ic specific Nim code; WIP * make the symbol import mechanism lazy; WIP * ensure that modules can be imported multiple times * ambiguity checking * handle converters and TR macros properly * make 'enum' test category green again * special logic for semi-pure enums * makes nimsuggest tests green again * fixes nimdata * makes nimpy green again * makes more important packages work
Diffstat (limited to 'testament')
-rw-r--r-- | testament/important_packages.nim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/testament/important_packages.nim b/testament/important_packages.nim index 2da10e749..aae560939 100644 --- a/testament/important_packages.nim +++ b/testament/important_packages.nim @@ -76,7 +76,9 @@ pkg2 "nigui", "nim c -o:niguii -r src/nigui.nim" pkg2 "NimData", "nim c -o:nimdataa src/nimdata.nim" pkg2 "nimes", "nim c src/nimes.nim" pkg2 "nimfp", "nim c -o:nfp -r src/fp.nim" -pkg2 "nimgame2", "nim c nimgame2/nimgame.nim" +when false: + pkg2 "nimgame2", "nim c nimgame2/nimgame.nim" + # XXX Doesn't work with deprecated 'randomize', will create a PR. pkg2 "nimgen", "nim c -o:nimgenn -r src/nimgen/runcfg.nim" pkg2 "nimlsp" pkg2 "nimly", "nim c -r tests/test_readme_example.nim" |