Fix #343
This commit is contained in:
parent
7da34e9174
commit
503d5db16c
1 changed files with 5 additions and 1 deletions
|
@ -113,7 +113,11 @@ class CastingHarness private constructor(
|
|||
next.evaluate(continuation.next, world, this)
|
||||
} catch (mishap: Mishap) {
|
||||
val pattern = getPatternForFrame(next)
|
||||
val operator = getOperatorForFrame(next, world)
|
||||
val operator = try {
|
||||
getOperatorForFrame(next, world)
|
||||
} catch (e: Throwable) {
|
||||
null
|
||||
}
|
||||
CastResult(
|
||||
continuation,
|
||||
null,
|
||||
|
|
Loading…
Reference in a new issue