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 /lib | |
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 'lib')
-rw-r--r-- | lib/system.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system.nim b/lib/system.nim index 57b46a937..afd8e467d 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -627,7 +627,7 @@ proc newSeq*[T](s: var seq[T], len: Natural) {.magic: "NewSeq", noSideEffect.} ## the sequence instead of adding them. Example: ## ## .. code-block:: Nim - ## var inputStrings : seq[string] + ## var inputStrings: seq[string] ## newSeq(inputStrings, 3) ## assert len(inputStrings) == 3 ## inputStrings[0] = "The fourth" |