[KLIB tool] Add tests for dumping metadata signatures

This commit is contained in:
Dmitriy Dolovov
2023-10-25 12:26:02 +02:00
committed by Space Team
parent 88a297b022
commit e18a2d0a2e
25 changed files with 1004 additions and 41 deletions
@@ -0,0 +1,24 @@
## FIR_IDENTICAL
language = Objective-C
package = just_cinterop_c
---
@protocol Foo
- (void) publicFunction;
@property int publicProperty;
@end
@interface Bar {
@public
int publicProperty;
@protected
int protectedProperty;
@private
int privateProperty;
}
- (void) publicFunction;
@property int publicProperty;
@property int protectedProperty;
@property int privateProperty;
@end