summary refs log tree commit diff stats
path: root/compiler/sempass2.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2013-03-25 01:44:52 +0100
committerAraq <rumpf_a@web.de>2013-03-25 01:44:52 +0100
commit3051c52f517be70b4efb8d5823a3f4cb5cb7cd5e (patch)
tree9de025b3233866922587e49293ef10cf1d49c524 /compiler/sempass2.nim
parent0eae08af7e65c8863e22236ddbf269516808767e (diff)
downloadNim-3051c52f517be70b4efb8d5823a3f4cb5cb7cd5e.tar.gz
fixes a long-standing bug about procvar checking
Diffstat (limited to 'compiler/sempass2.nim')
-rw-r--r--compiler/sempass2.nim2
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/sempass2.nim b/compiler/sempass2.nim
index b2fd0fb04..f43820fa7 100644
--- a/compiler/sempass2.nim
+++ b/compiler/sempass2.nim
@@ -14,9 +14,7 @@ import
 # Second semantic checking pass over the AST. Necessary because the old
 # way had some inherent problems. Performs:
 # 
-# * procvar checks
 # * effect+exception tracking
-# * closure analysis
 # * checks for invalid usages of compiletime magics (not implemented)
 # * checks for invalid usages of PNimNode (not implemented)
 # * later: will do an escape analysis for closures at least