File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed
test/SILGen/Inputs/usr/include Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change
1
+
2
+ @import Foundation;
3
+
4
+ @interface NSEntityDescription : NSObject
5
+ @end
6
+
7
+ @interface NSManagedObjectContext : NSObject
8
+ @end
9
+
10
+ @interface NSManagedObject : NSObject
11
+ - (__kindof NSManagedObject *)initWithEntity : (NSEntityDescription *)entity
12
+ insertIntoManagedObjectContext : (NSManagedObjectContext *)context ;
13
+ @property (nonatomic , readonly , strong ) NSEntityDescription *entity;
14
+ + (NSEntityDescription *)entity ;
15
+ @end
16
+
Original file line number Diff line number Diff line change @@ -26,6 +26,10 @@ module AppKit {
26
26
header "AppKit.h"
27
27
export *
28
28
}
29
+ module CoreData {
30
+ header "CoreData.h"
31
+ export *
32
+ }
29
33
module Dispatch {
30
34
header "dispatch.h"
31
35
export *
You can’t perform that action at this time.
0 commit comments