aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/target/jvm/modifier/inner.lux
blob: eec9221fbfc8fd0daf7c20bf2a2a7f48d26e182b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(.module:
  [lux (#- static)
   [type
    abstract]]
  [// (#+ modifiers:)])

(abstract: #export Inner {} Any)

(modifiers: Inner
  ["0001" public]
  ["0002" private]
  ["0004" protected]
  ["0008" static]
  ["0010" final]
  ["0200" interface]
  ["0400" abstract]
  ["1000" synthetic]
  ["2000" annotation]
  ["4000" enum]
  )