aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/target/jvm/constant/tag.lux
blob: aedf6fed27bba9fe81fc389d222ee8a11eceee5a (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
(.using
 [library
  [lux (.except)
   [abstract
    [equivalence (.only Equivalence)]]
   [control
    ["[0]" try]]
   [data
    [format
     [binary (.only Writer)]]]
   [type
    [primitive (.except)]]]]
 ["[0]" ///
  [encoding
   ["[1][0]" unsigned (.only U1) (.open: "u1//[0]" equivalence)]]])

(primitive: .public Tag
  U1

  (def: .public equivalence
    (Equivalence Tag)
    (implementation
     (def: (= reference sample)
       (u1//= (representation reference)
              (representation sample)))))

  (with_template [<code> <name>]
    [(def: .public <name>
       Tag
       (|> <code> ///unsigned.u1 try.trusted abstraction))]

    [01 utf8]
    [03 integer]
    [04 float]
    [05 long]
    [06 double]
    [07 class]
    [08 string]
    [09 field]
    [10 method]
    [11 interface_method]
    [12 name_and_type]
    [15 method_handle]
    [16 method_type]
    [18 invoke_dynamic]
    )

  (def: .public writer
    (Writer Tag)
    (|>> representation ///unsigned.writer/1))
  )