diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-12-21 22:13:50 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2016-12-21 22:13:50 +0100 |
commit | 4e481cc316229436b87aaf035d70f686d0aaee5f (patch) | |
tree | 67c85a8fef0c5b0ebb7384712ad0a0bbf020aad4 /compiler/nimfix | |
parent | 2bb49136de3e3d798c4bf37d23f34ee868e7ebf7 (diff) | |
download | Nim-4e481cc316229436b87aaf035d70f686d0aaee5f.tar.gz |
implements module grouping for the import statement
Diffstat (limited to 'compiler/nimfix')
-rw-r--r-- | compiler/nimfix/nimfix.nim | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/compiler/nimfix/nimfix.nim b/compiler/nimfix/nimfix.nim index d1cf9615d..4afb16912 100644 --- a/compiler/nimfix/nimfix.nim +++ b/compiler/nimfix/nimfix.nim @@ -10,11 +10,11 @@ ## Nimfix is a tool that helps to convert old-style Nimrod code to Nim code. import strutils, os, parseopt -import compiler/options, compiler/commands, compiler/modules, compiler/sem, - compiler/passes, compiler/passaux, compiler/nimfix/pretty, - compiler/msgs, compiler/nimconf, - compiler/extccomp, compiler/condsyms, compiler/lists, - compiler/modulegraphs, compiler/idents +import compiler/[options, commands, modules, sem, + passes, passaux, nimfix/pretty, + msgs, nimconf, + extccomp, condsyms, lists, + modulegraphs, idents] const Usage = """ Nimfix - Tool to patch Nim code |