aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/target/jvm/bytecode/jump.lux
blob: e300e51aed185466625436a81e39e896e2f6bc78 (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
(.module:
  [library
   [lux "*"
    [abstract
     [equivalence {"+" [Equivalence]}]]
    [data
     ["[0]" format "_"
      ["[1]" binary {"+" [Writer]}]]]]]
  ["[0]" /// "_"
   [encoding
    ["[1][0]" signed {"+" [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)