chore: import upstream snapshot with attribution
This commit is contained in:
+1
@@ -0,0 +1 @@
|
||||
#import "Widget.h"
|
||||
Vendored
+4
@@ -0,0 +1,4 @@
|
||||
@interface Widget
|
||||
- (void)render;
|
||||
- (void)refresh;
|
||||
@end
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
#import "Widget.h"
|
||||
|
||||
@implementation Widget
|
||||
- (void)render {
|
||||
[self refresh];
|
||||
}
|
||||
- (void)refresh {
|
||||
}
|
||||
@end
|
||||
@@ -0,0 +1,5 @@
|
||||
extension Widget {
|
||||
func describe() -> String {
|
||||
return "widget"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user