Fix: add missing "const" and "fixed" modifiers to reflect API (#265)

This fixes an issue where the reflect API does not show fixed or const modifiers on a property.
This commit is contained in:
Daniel Chao
2024-02-29 07:02:09 -08:00
committed by GitHub
parent ddfab2a280
commit 6746040362
5 changed files with 20 additions and 4 deletions
@@ -49,6 +49,10 @@ stringLiteral: "yes"
constrained: String(length.isBetween(3, 10))
aliased: MyMap<Person>
hidden hiddenProp: String
const constProp: String = "the const prop"
fixed fixedProp: String = "the fixed prop"
/// class doc comment
@MyAnn { text = "class annotation" }
open class Person {