[KLIB tool] Add tests for dumping metadata signatures
This commit is contained in:
committed by
Space Team
parent
88a297b022
commit
e18a2d0a2e
@@ -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
|
||||
Reference in New Issue
Block a user