mirror of
https://github.com/apple/pkl.git
synced 2026-03-22 00:59:17 +01:00
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:
@@ -319,7 +319,7 @@ external class TypeParameter {
|
||||
}
|
||||
|
||||
/// A modifier of a [Declaration].
|
||||
typealias Modifier = "abstract"|"external"|"hidden"|"open"
|
||||
typealias Modifier = "abstract"|"external"|"hidden"|"open"|"fixed"|"const"
|
||||
|
||||
/// The variance of a [TypeParameter].
|
||||
///
|
||||
|
||||
Reference in New Issue
Block a user