Commit 75c42021 authored by Stefan Behnel's avatar Stefan Behnel

disable crash report for normal compiler errors

parent 49c69da4
...@@ -147,7 +147,7 @@ class TreeVisitor(BasicVisitor): ...@@ -147,7 +147,7 @@ class TreeVisitor(BasicVisitor):
self.access_path.append((parent, attrname, idx)) self.access_path.append((parent, attrname, idx))
try: try:
result = self.visit(child) result = self.visit(child)
except Errors.CompilerCrash: except (Errors.CompileWarning, Errors.CompileError):
raise raise
except Exception, e: except Exception, e:
import sys import sys
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment