diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2019-03-07 19:17:01 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-03-14 07:59:44 +0100 |
commit | 07f58ddfa9d2d540c85f7726669dc4a0b7ca76e1 (patch) | |
tree | 770082d6454d11399ed71060093d545ba78b98e2 /compiler | |
parent | 939c1512244a5f8ebd98a0f52e5a7b29bf7141d2 (diff) | |
download | Nim-07f58ddfa9d2d540c85f7726669dc4a0b7ca76e1.tar.gz |
rename: semasgn -> liftdestructors
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/liftdestructors.nim (renamed from compiler/semasgn.nim) | 0 | ||||
-rw-r--r-- | compiler/semstmts.nim | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/compiler/semasgn.nim b/compiler/liftdestructors.nim index 6b36dd6fb..6b36dd6fb 100644 --- a/compiler/semasgn.nim +++ b/compiler/liftdestructors.nim diff --git a/compiler/semstmts.nim b/compiler/semstmts.nim index 859856e48..e2f7b6303 100644 --- a/compiler/semstmts.nim +++ b/compiler/semstmts.nim @@ -339,7 +339,7 @@ proc checkNilable(c: PContext; v: PSym) = elif tfNotNil in v.typ.flags and tfNotNil notin v.astdef.typ.flags: message(c.config, v.info, warnProveInit, v.name.s) -include semasgn +include liftdestructors proc addToVarSection(c: PContext; result: PNode; orig, identDefs: PNode) = let L = identDefs.len |