repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[mlir][PDLL] Allow (and ignore) `-D` tablegen macros. (#124166)
[llvm-project.git]
/
lldb
/
test
/
API
/
lang
/
objc
/
hidden-ivars
/
InternalDefiner.m
blob
1a10ce021ce3a769f657b845950ec27f5e230c78
1
#import "InternalDefiner.h"
2
3
@interface InternalDefiner () {
4
uintptr_t bar;
5
}
6
7
@end
8
9
@implementation InternalDefiner
10
11
-(id)init
12
{
13
if (self = [super init])
14
{
15
foo = 2;
16
bar = 3;
17
}
18
return self;
19
}
20
21
-(id)initWithFoo:(uintptr_t)f andBar:(uintptr_t)b
22
{
23
if (self = [super init])
24
{
25
foo = f;
26
bar = b;
27
}
28
return self;
29
}
30
31
@end