-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy patherror_handling.pseudo.yaml
64 lines (64 loc) · 1.59 KB
/
error_handling.pseudo.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
constants: []
definitions: []
dependencies: []
main:
- {base: null, name: NeptunError, type: custom_exception}
- {base: NeptunError, name: IntergallacticError, type: custom_exception}
- local: f
pseudo_type: Void
type: local_assignment
value: {pseudo_type: Int, type: int, value: 2}
value_type: Int
- block:
- local: f
pseudo_type: Void
type: local_assignment
value: {pseudo_type: Int, type: int, value: 2}
value_type: Int
- block:
- exception: NeptunError
pseudo_type: Void
type: throw_statement
value: {pseudo_type: String, type: string, value: why f}
otherwise: null
pseudo_type: Void
test:
left: {name: f, pseudo_type: Int, type: local}
op: ==
pseudo_type: Boolean
right: {pseudo_type: Int, type: int, value: 2}
type: binary_op
type: if_statement
- local: h
pseudo_type: Void
type: local_assignment
value: {pseudo_type: Int, type: int, value: 2}
value_type: Int
handlers:
- block:
- args:
- {name: e, pseudo_type: Exception, type: local}
function: display
namespace: io
pseudo_type: Void
type: standard_call
exception: IntergallacticError
instance: e
is_builtin: false
pseudo_type: Void
type: exception_handler
- block:
- args:
- {name: e, pseudo_type: Exception, type: local}
function: display
namespace: io
pseudo_type: Void
type: standard_call
exception: NeptunError
instance: e
is_builtin: false
pseudo_type: Void
type: exception_handler
pseudo_type: Void
type: try_statement
type: module