Parser: Test for exact missing ':' location column

This ensures compiler points to the right place when claiming that ':' is
missing.
This commit is contained in:
Adam Strzelecki
2015-04-19 17:44:04 +02:00
parent 07b13251d1
commit dc1b15647c
3 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
discard """
file: "tinvcolonlocation1.nim"
line: 8
column: 3
errormsg: "':' expected"
"""
try #<- missing ':'
echo "try"
except:
echo "except"
finally:
echo "finally"

View File

@@ -0,0 +1,15 @@
discard """
file: "tinvcolonlocation2.nim"
line: 11
column: 1
errormsg: "':' expected"
"""
try:
echo "try"
except #<- missing ':'
echo "except"
finally:
#<-- error will be here above, at the beginning of finally,
# since compiler tries to consome echo and part of except
# expression
echo "finally"

View File

@@ -0,0 +1,12 @@
discard """
file: "tinvcolonlocation3.nim"
line: 12
column: 3
errormsg: "':' expected"
"""
try:
echo "try"
except:
echo "except"
finally #<- missing ':'
echo "finally"