fixes #5986 js backend failed to compile try ... except new syntax (#6116)

This commit is contained in:
andri lim
2017-07-17 13:07:47 +07:00
committed by Andreas Rumpf
parent 3c36aed100
commit c245cfc1fd
2 changed files with 14 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
discard """
output: '''hello'''
"""
type
MyException = ref Exception
#bug #5986
try:
raise MyException(msg: "hello")
except MyException as e:
echo e.msg