This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "Kiwi.h" | |
#define KWPasteX(x, y) x ## y | |
#define KWPaste(x, y) KWPasteX(x, y) | |
#define KWMetaMacro(...) \ | |
if (0) \ | |
KWPaste(finished, __LINE__): ; \ | |
else \ | |
for (KWVoidBlock KWPaste(block, __LINE__) = nil;;) \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protocol TestProtocol { | |
} | |
class TestClass : TestProtocol { | |
} | |
class TestClass2 { | |
} | |
struct Test { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdlib.h> | |
int test1(int32_t (*array)[10]) { | |
return 1; | |
} | |
int test2(int32_t (*array)[5]) { | |
return 2; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import Foundation; | |
NS_ASSUME_NONNULL_BEGIN | |
@interface NewClass : NSObject | |
- (instancetype)initWithString:(NSString *)string NS_DESIGNATED_INITIALIZER; | |
@end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "ReactiveCocoa", | |
"version": "4.2.1", | |
"summary": "A framework for composing and transforming streams of values.", | |
"description": "ReactiveCocoa (RAC) is an Objective-C framework for Functional Reactive Programming.\nIt provides APIs for composing and transforming streams of values.", | |
"homepage": "https://github.com/ReactiveCocoa/ReactiveCocoa", | |
"license": { | |
"type": "MIT", | |
"file": "LICENSE.md" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for pre in *.pre.txt | |
diff -urN \ | |
(sed -E "s/ '--(swift|llvm)-cmake-options=[^']+'//g" $pre | psub) | |
(sed -E "s/ '--(swift|llvm)-cmake-options=[^']+'//g" (string replace -r '\.pre\.' '.output.' $pre) | psub) | |
or read | |
end |
OlderNewer