Lines Matching refs:caught
1698 catch /xyz/ " try 1 active, but exception already caught
2637 " When an exception is thrown but not caught inside a function, the
2713 " When an exception is thrown but not caught inside a script file,
2771 " When an exception is thrown but not caught, an error message is
2786 call assert_equal('E605: Exception not caught: arrgh', v:errmsg)
2806 call assert_equal('E605: Exception not caught: oops', v:errmsg)
2834 call assert_equal('E605: Exception not caught: brrr', v:errmsg)
2856 call assert_equal('E605: Exception not caught: brrr', v:errmsg)
3434 " v:exception evaluates to the value of the exception that was caught
3435 " most recently and is not finished. (A caught exception is finished
3731 " caught.
4016 let caught = 0
4022 let caught = 1
4028 call assert_equal(1, caught)
4031 let caught = caught + 1
4036 call assert_equal(2, caught)
4044 let caught = 0
4049 let caught = 1
4057 call assert_equal(1, caught)
4060 let caught = caught + 1
4066 call assert_equal(2, caught)
4103 " interrupt exception is thrown and can be caught. Its value is
4107 " caught by the next surrounding try conditional. An interrupt is
4108 " ignored when there is a previous interrupt that has not been caught
4229 " and can be caught. The error exception has a "Vim(cmdname):" prefix
4239 let caught = 0
4243 let caught = 1
4247 call assert_equal(1, caught)
4266 let caught = 0
4270 let caught = 1
4274 call assert_equal(1, caught)
4293 let caught = 0
4297 let caught = 1
4301 call assert_equal(1, caught)
4326 let caught = 0
4330 let caught = 1
4334 call assert_equal(1, caught)
4359 let caught = 0
4363 let caught = 1
4367 call assert_equal(1, caught)
4393 let caught = 0
4397 let caught = 1
4401 call assert_equal(1, caught)
4428 let caught = 0
4432 let caught = 1
4436 call assert_equal(1, caught)
4494 let caught = 0
4499 let caught = 1
4503 call assert_equal(1, caught)
4560 " block are ignored, but the error exception can be caught by the next
4563 " has not been caught.
4572 let caught = 0
4579 let caught = 1
4582 call assert_equal(1, caught)
4601 let caught = 0
4612 let caught = 1
4615 call assert_equal(1, caught)
4633 let caught = 0
4648 let caught = 1
4651 call assert_equal(1, caught)
4669 let caught = 0
4684 let caught = 1
4687 call assert_equal(1, caught)
4705 let caught = 0
4714 let caught = 1
4719 call assert_equal(1, caught)
4750 catch /\)/ " not checked; exception has already been caught
4885 " function is being executed. The exception can be caught by the
5026 " can be caught by the caller.
5168 throw "should not be caught"
6209 " ... but break loop for caught interrupt exception,
6234 " ... but break loop for caught error exception,
6248 " ... but break loop for caught interrupt exception,
6377 let caught = 0