blob: 14dd13d6e18ed2623bfb2a6d242c5b7128ce1e85 (
plain)
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
65
|
(.module:
[lux #*
[abstract
["." equivalence (#+ Equivalence)]]
[control
["<>" parser ("#@." functor)
["<2>" binary (#+ Parser)]]]
[data
[format
[".F" binary (#+ Writer)]]]]
["." // #_
["//#" /// #_
[constant (#+ Class)]
["#." index (#+ Index)]
[code
["#." label (#+ Label)]]
[encoding
["#." unsigned (#+ U2)]]]])
(type: #export Exception
{#start-pc Label
#end-pc Label
#handler-pc Label
#catch-type (Index Class)})
(def: #export equivalence
(Equivalence Exception)
($_ equivalence.product
////label.equivalence
////label.equivalence
////label.equivalence
////index.equivalence
))
## https://docs.oracle.com/javase/specs/jvms/se8/html/jvms-4.html#jvms-4.7.3
(def: #export length
Nat
($_ n/+
## u2 start_pc;
////unsigned.u2-bytes
## u2 end_pc;
////unsigned.u2-bytes
## u2 handler_pc;
////unsigned.u2-bytes
## u2 catch_type;
////unsigned.u2-bytes
))
(def: #export parser
(Parser Exception)
($_ <>.and
////label.parser
////label.parser
////label.parser
////index.parser
))
(def: #export writer
(Writer Exception)
($_ binaryF.and
////label.writer
////label.writer
////label.writer
////index.writer
))
|