File: result_builder_ast_transform.swift

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (165 lines) | stat: -rw-r--r-- 2,842 bytes parent folder | download
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
// RUN: %empty-directory(%t)
// RUN: %target-build-swift -module-name main -I %t -L %t %s -o %t/main %target-rpath(%t)
// RUN: %target-codesign %t/main
// RUN: %target-run %t/main | %FileCheck %s

// REQUIRES: executable_test

@propertyWrapper
struct Wrapper<Value> {
  public var value: Value

  init(wrappedValue: Value) {
    self.value = wrappedValue
  }

  var projectedValue: Self { return self }

  var wrappedValue: Value {
    get { self.value }
    set { self.value = newValue }
  }

  func test() -> Int { 42 }
}

extension Wrapper where Value: ExpressibleByNilLiteral {
  init() {
    self.value = nil
  }
}

enum Either<T,U> {
  case first(T)
  case second(U)
}

@resultBuilder
struct TupleBuilder {
  static func buildBlock() -> () { }

  static func buildBlock<T1>(_ t1: T1) -> T1 {
    return t1
  }

  static func buildBlock<T1, T2>(_ t1: T1, _ t2: T2) -> (T1, T2) {
    return (t1, t2)
  }

  static func buildBlock<T1, T2, T3>(_ t1: T1, _ t2: T2, _ t3: T3)
      -> (T1, T2, T3) {
    return (t1, t2, t3)
  }

  static func buildBlock<T1, T2, T3, T4>(_ t1: T1, _ t2: T2, _ t3: T3, _ t4: T4)
      -> (T1, T2, T3, T4) {
    return (t1, t2, t3, t4)
  }

  static func buildBlock<T1, T2, T3, T4, T5>(
    _ t1: T1, _ t2: T2, _ t3: T3, _ t4: T4, _ t5: T5
  ) -> (T1, T2, T3, T4, T5) {
    return (t1, t2, t3, t4, t5)
  }

  static func buildDo<T>(_ value: T) -> T { return value }
  static func buildOptional<T>(_ value: T?) -> T? { return value }

  static func buildEither<T,U>(first value: T) -> Either<T,U> {
    return .first(value)
  }
  static func buildEither<T,U>(second value: U) -> Either<T,U> {
    return .second(value)
  }
}

func tuplify<T>(_ cond: Bool, @TupleBuilder body: (Bool) -> T) {
  print(body(cond))
}

tuplify(true) { cond in
  @Wrapper var x: Int?
  x
  x = 42
  x
}
// CHECK: (nil, (), Optional(42))

tuplify(true) { cond in
  @Wrapper var x: Int = 42
  x
  if cond {
    $x
  }
}
// CHECK: (42, Optional(main.Wrapper<Swift.Int>(value: 42)))

tuplify(true) { cond in
  @Wrapper(wrappedValue: 42) var x: Int

  if cond && x == 42 {
    x = 30
    $x
  }

  x
}
// CHECK: (Optional(((), main.Wrapper<Swift.Int>(value: 30))), 30)

tuplify(true) { cond in
  if cond {
    @Wrapper(wrappedValue: 42) var x: Int
    if $x.test() > 0 {
      x
    }
  }

  ""
}
// CHECK: (Optional(Optional(42)), "")

tuplify(true) { cond in
  var x: Int?

  if cond {
    var y: Int?
    x = 1
    y = x
    y
  } else {
    x = 0
  }

  x
}
// CHECK: (main.Either<((), (), Swift.Optional<Swift.Int>), ()>.first((), (), Optional(1)), Optional(1))

tuplify(true) { cond in
  ""

  var x: Int {
    get { 42 }
  }

  if cond {
    x
  }

  ""
}
// CHECK: ("", Optional(42), "")

tuplify(true) { cond in
  lazy var x: Int = {
    42
  }()

  if cond {
    x
    x = 0
    x
  }

  ""
}
// CHECK: (Optional((42, (), 0)), "")