mirror of
https://github.com/github/codeql.git
synced 2026-05-03 20:58:03 +02:00
Kotlin: Extract visibility for properties
This commit is contained in:
@@ -960,7 +960,7 @@ javadocText(
|
||||
|
||||
@modifiable = @member_modifiable| @param | @localvar ;
|
||||
|
||||
@member_modifiable = @class | @interface | @method | @constructor | @field ;
|
||||
@member_modifiable = @class | @interface | @method | @constructor | @field | @kt_property;
|
||||
|
||||
@member = @method | @constructor | @field | @reftype ;
|
||||
|
||||
|
||||
@@ -687,7 +687,7 @@ class InstanceField extends Field {
|
||||
}
|
||||
|
||||
/** A Kotlin property. */
|
||||
class Property extends Element, @kt_property {
|
||||
class Property extends Element, Modifiable, @kt_property {
|
||||
/** Gets the getter method for this property, if any. */
|
||||
Method getGetter() { ktPropertyGetters(this, result) }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user