v2 / vlib / builtin / meta_attribute.v
17 lines · 15 sloc · 295 bytes · 90fa8bc56fd4c3870a9041e39fc156bfacdcd1b1
Raw
1module builtin
2
3pub enum AttributeKind {
4 plain // [name]
5 string // ['name']
6 number // [123]
7 bool // [true] || [false]
8 comptime_define // [if name]
9}
10
11pub struct VAttribute {
12pub:
13 name string
14 has_arg bool
15 arg string
16 kind AttributeKind
17}
18