1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
|
class Foo : Bar {
var test : Int
@IBOutlet var testOutlet : Int
func testMethod() {
if test {
}
}
@IBAction func testAction() {
}
}
@IBDesignable
class Foo2 {}
class Foo3 {
@IBInspectable var testIBInspectable : Int
@GKInspectable var testGKInspectable : Int
}
protocol MyProt {}
class OuterCls {
class InnerCls1 {}
}
extension OuterCls {
class InnerCls2 {}
}
class GenCls<T1, T2> {}
class TestParamAndCall {
func testParams(arg1: Int, name: String) {
if (arg1) {
testParams(0, name:"testing")
}
}
func testParamAndArg(arg1: Int, param par: Int) {
}
}
// FIXME: Whatever.
class TestMarkers {
// TODO: Something.
func test(arg1: Bool) -> Int {
// FIXME: Blah.
if (arg1) {
// FIXME: Blah.
return 0
}
return 1
}
}
func test2(arg1: Bool) {
if (arg1) {
// http://whatever FIXME: http://whatever/fixme.
}
}
extension Foo {
func anExtendedFooFunction() {
}
}
// rdar://19539259
var (sd2: Qtys)
{
417(d: nil)
}
for i in 0...5 {}
for var i = 0, i2 = 1; i == 0; ++i {}
while var v = o, var z = o, v > z {}
repeat {} while v == 0
if var v = o, var z = o, v > z {}
switch v {
case 1: break;
case 2, 3: break;
default: break;
}
let myArray = [1, 2, 3]
let myDict = [1:1, 2:2, 3:3]
// rdar://21203366
@objc
class ClassObjcAttr : NSObject {
@objc
func m() {}
}
@objc(Blah)
class ClassObjcAttr2 : NSObject {
@objc(Foo)
func m() {}
}
protocol FooProtocol {
associatedtype Bar
associatedtype Baz: Equatable
}
// https://github.com/apple/swift/issues/48287
a.b(c: d?.e?.f, h: i)
// https://github.com/apple/swift/issues/49474
/* ๐จโ๐ฉโ๐งโ๐ฆ๐จโ๐ฉโ๐งโ๐ฆ๐จโ๐ฉโ๐งโ๐ฆ */
`init`(x: Int, y: Int) {}
class C {
/* ๐จโ๐ฉโ๐งโ๐ฆ๐จโ๐ฉโ๐งโ๐ฆ๐จโ๐ฉโ๐งโ๐ฆ */
`init`(x: Int, y: Int) {}
}
var // comment
`$` = 1
func /* comment */`foo`(x: Int) {}
// rdar://40085232
enum MyEnum {
case Bar(arg: Int)
}
enum MySecondEnum {
case One = 1
}
func someFunc(input :Int?, completion: () throws -> Void) rethrows {}
class OneMore {
@IBSegueAction func testAction(coder: AnyObject, _ ident: String) -> AnyObject {
fatalError()
}
}
class Chain<A> {
func + (lhs: Chain<A>, rhs: Chain<A>) -> Chain<A> { fatalError() }
}
public init() {
fatalError()
}
deinit {
fatalError()
}
#if false
extension Result {
func foo() {}
}
extension Outer {
class Inner {
deinit {}
}
}
public extension Outer2 {
class Inner2 {
deinit {}
}
}
#endif
@objc(FPBarProto)
protocol BarProtocol {}
var var_with_didset = 10 {
didSet { print(oldValue) }
}
#if os(iOS)
@objc protocol MyProtocol: NSObjectProtocol {
var thing: NSObject {get}
}
#endif
class A {
#if true
@IBAction @objc func foo(a: Int) {}
#endif
}
|