aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/target/jvm/bytecode/jump.lux
blob: 5d463e4037519ed430215d9f09efcb2cc8aeb47b (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
(.using
 [library
  [lux (.except)
   [abstract
    [equivalence (.only Equivalence)]]
   [data
    ["[0]" format
     ["[1]" binary (.only Writer)]]]]]
 ["[0]" ///
  [encoding
   ["[1][0]" signed (.only S2 S4)]]])

(type: .public Jump
  S2)

(def: .public equivalence
  (Equivalence Jump)
  ///signed.equivalence)

(def: .public writer
  (Writer Jump)
  ///signed.writer/2)

(type: .public Big_Jump
  S4)

(def: .public lifted
  (-> Jump Big_Jump)
  ///signed.lifted/4)