forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdef_override.swift
63 lines (55 loc) · 1.25 KB
/
def_override.swift
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
@_exported import def_class
public class OverrideComputedProperty : ComputedProperty {
public override var value : Int {
get {
return super.value + 1
}
set {
super.value = newValue
}
}
public override var readOnly : Int {
return super.readOnly + 1
}
public override init () { super.init() }
}
public class OverrideAddsSetter : ComputedProperty {
public override var readOnly : Int {
get { return 1 }
set { /* do nothing */ }
}
public override init () { super.init() }
}
public class OverrideSimpleSubscript : ReadonlySimpleSubscript {
public override subscript(x: Int) -> Bool {
return false
}
public override init () {}
}
public class OverrideAddsSubscriptSetter : ReadonlySimpleSubscript {
public override subscript(x: Int) -> Bool {
set(newValue) {
// do nothing!
}
get {
return super[x]
}
}
public override init () {}
}
public class OverrideComplexSubscript : ComplexSubscript {
public override subscript(x : Int, y : Bool) -> Int {
set(newValue) {
// do nothing!
}
get {
return super[x, y]
}
}
public override init () {}
}
public class OverrideFunc : StillEmpty {
public override func reset() {
}
public override init () {}
}