summary refs log tree commit diff stats
path: root/compiler/renderer.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2014-04-14 08:45:43 +0200
committerAraq <rumpf_a@web.de>2014-04-14 08:45:43 +0200
commitb961e47bfe519bf456a3e8a0dba3025a3c047b04 (patch)
tree1054a10c42d5c1d0205d14b9ea655218c6be2508 /compiler/renderer.nim
parent817337af304b8cdf8b96754ae039044840333a02 (diff)
downloadNim-b961e47bfe519bf456a3e8a0dba3025a3c047b04.tar.gz
new concurrency model: first steps; shared is not a keyword anymore
Diffstat (limited to 'compiler/renderer.nim')
-rw-r--r--compiler/renderer.nim6
1 files changed, 0 insertions, 6 deletions
diff --git a/compiler/renderer.nim b/compiler/renderer.nim
index fa119eba9..6b62c48c5 100644
--- a/compiler/renderer.nim
+++ b/compiler/renderer.nim
@@ -1082,12 +1082,6 @@ proc gsub(g: var TSrcGen, n: PNode, c: TContext) =
       gsub(g, n.sons[1])
     else:
       put(g, tkIterator, "iterator")
-  of nkSharedTy:
-    if sonsLen(n) > 0:
-      putWithSpace(g, tkShared, "shared")
-      gsub(g, n.sons[0])
-    else:
-      put(g, tkShared, "shared")
   of nkStaticTy:
     put(g, tkStatic, "static")
     put(g, tkBracketLe, "[")