mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-18 21:40:32 +00:00
bugfix: exception handling (still not correct)
This commit is contained in:
13
tests/accept/compile/tcputime.nim
Executable file
13
tests/accept/compile/tcputime.nim
Executable file
@@ -0,0 +1,13 @@
|
||||
|
||||
import times, os
|
||||
|
||||
var e = epochTime()
|
||||
var c = cpuTime()
|
||||
|
||||
os.sleep(1500)
|
||||
|
||||
e = epochTime() - e
|
||||
c = cpuTime() - c
|
||||
|
||||
echo "epochTime: ", e, " cpuTime: ", c
|
||||
|
||||
0
tests/accept/compile/tdictdestruct.nim
Normal file → Executable file
0
tests/accept/compile/tdictdestruct.nim
Normal file → Executable file
0
tests/accept/compile/tgetstartmilsecs.nim
Normal file → Executable file
0
tests/accept/compile/tgetstartmilsecs.nim
Normal file → Executable file
0
tests/accept/run/texplicitgeneric1.nim
Normal file → Executable file
0
tests/accept/run/texplicitgeneric1.nim
Normal file → Executable file
0
tests/accept/run/texplicitgeneric2.nim
Normal file → Executable file
0
tests/accept/run/texplicitgeneric2.nim
Normal file → Executable file
14
tests/accept/run/treraise.nim
Normal file → Executable file
14
tests/accept/run/treraise.nim
Normal file → Executable file
@@ -8,10 +8,10 @@ proc genErrors(s: string) =
|
||||
else:
|
||||
raise newException(EsomeotherErr, "bla")
|
||||
|
||||
while True:
|
||||
try:
|
||||
genErrors("errssor!")
|
||||
except ESomething:
|
||||
echo("Error happened")
|
||||
except:
|
||||
raise
|
||||
try:
|
||||
genErrors("errssor!")
|
||||
except ESomething:
|
||||
echo("Error happened")
|
||||
except:
|
||||
raise
|
||||
|
||||
|
||||
16
tests/accept/run/tunhandledexc.nim
Normal file
16
tests/accept/run/tunhandledexc.nim
Normal file
@@ -0,0 +1,16 @@
|
||||
type
|
||||
ESomething = object of E_Base
|
||||
ESomeOtherErr = object of E_Base
|
||||
|
||||
proc genErrors(s: string) =
|
||||
if s == "error!":
|
||||
raise newException(ESomething, "Test")
|
||||
else:
|
||||
raise newException(EsomeotherErr, "bla")
|
||||
|
||||
when True:
|
||||
try:
|
||||
genErrors("errssor!")
|
||||
except ESomething:
|
||||
echo("Error happened")
|
||||
|
||||
0
tests/accept/run/tvariantasgn.nim
Normal file → Executable file
0
tests/accept/run/tvariantasgn.nim
Normal file → Executable file
0
tests/accept/run/tvariantstack.nim
Normal file → Executable file
0
tests/accept/run/tvariantstack.nim
Normal file → Executable file
6
tests/accept/run/twrongexc.nim
Normal file
6
tests/accept/run/twrongexc.nim
Normal file
@@ -0,0 +1,6 @@
|
||||
try:
|
||||
raise newException(EInvalidValue, "")
|
||||
except EOverflow:
|
||||
echo("Error caught")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user