Compiler, Scripts: strip stacktrace when reporting exception on script execution

This commit is contained in:
Pavel V. Talanov
2015-11-23 18:19:10 +03:00
parent 567f946cb0
commit d6c7029c77
4 changed files with 57 additions and 5 deletions
@@ -0,0 +1,10 @@
fun main() {
error("my error")
}
fun a() {
main()
}
a()