diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2015-04-08 09:48:55 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2015-04-08 09:48:55 +0200 |
commit | 218d5567ed7ec64f9e1e7df15f9e8dff3d6ff5dd (patch) | |
tree | 5b66607057100c6bd4b6210452f5fbeb8d09ba23 /compiler/ast.nim | |
parent | d170a51f544536522625bf9ca2b6e0a7f80427f7 (diff) | |
parent | 39049e151f8d88f34baa74373ef92233005f3af2 (diff) | |
download | Nim-218d5567ed7ec64f9e1e7df15f9e8dff3d6ff5dd.tar.gz |
Merge pull request #2483 from def-/ropes
Get rid of deprecation warnings
Diffstat (limited to 'compiler/ast.nim')
-rw-r--r-- | compiler/ast.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/ast.nim b/compiler/ast.nim index 77a532898..39d33bb7c 100644 --- a/compiler/ast.nim +++ b/compiler/ast.nim @@ -685,8 +685,8 @@ type s*: TStorageLoc flags*: TLocFlags # location's flags t*: PType # type of location - r*: PRope # rope value of location (code generators) - heapRoot*: PRope # keeps track of the enclosing heap object that + r*: Rope # rope value of location (code generators) + heapRoot*: Rope # keeps track of the enclosing heap object that # owns this location (required by GC algorithms # employing heap snapshots or sliding views) @@ -698,7 +698,7 @@ type kind*: TLibKind generated*: bool # needed for the backends: isOverriden*: bool - name*: PRope + name*: Rope path*: PNode # can be a string literal! TInstantiation* = object |