コード例 #1
0
ファイル: ExceptionHelpers.cpp プロジェクト: nickooms/webkit
JSObject* throwTerminatedExecutionException(ExecState* exec)
{
    VM& vm = exec->vm();
    ErrorHandlingScope errorScope(vm);
    return vm.throwException(exec, createTerminatedExecutionException(&vm));
}
コード例 #2
0
JSObject* throwTerminatedExecutionException(ExecState* exec)
{
    Interpreter::ErrorHandlingMode mode(exec);
    return exec->vm().throwException(exec, createTerminatedExecutionException(&exec->vm()));
}