It looks like you can only use literals to define keys.
Eg:
property varaint map: {
'string_literal': TestClass.Low,
1024: 'some_value'
}
You can access the first value like this:
map.string_literal
or like this:
map['string_literal']
and you can access the second value like this:
map[1024]
↧