Extract local delegated properties

This commit is contained in:
Tamas Vajk
2022-03-08 15:39:34 +01:00
committed by Ian Lynagh
parent 48b99cf55c
commit f8343b8cc7
5 changed files with 346 additions and 2 deletions

View File

@@ -1217,3 +1217,25 @@ ktLocalFunction(
ktInitializerAssignment(
unique int id: @assignexpr ref
)
ktLocalDelegatedProperties(
unique int id: @kt_local_delegated_property,
unique int variableId: @variable ref,
int typeId: @type ref,
string name: string ref
)
ktLocalDelegatedPropertiesKotlinType(
unique int id: @kt_local_delegated_property ref,
int kttypeid: @kt_type ref
);
ktLocalDelegatedPropertyGetters(
unique int id: @kt_local_delegated_property ref,
int getter: @method ref
)
ktLocalDelegatedPropertySetters(
unique int id: @kt_local_delegated_property ref,
int setter: @method ref
)