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 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
|
// RUN: %batch-code-completion -debug-forbid-typecheck-prefix FORBIDDEN
enum E {
case e
case f(Int)
}
struct SomeError: Error {}
func ifExprDotReturn() -> E {
if .random() {
.#^DOT1?check=DOT^#
} else {
.e
}
}
func switchExprDotReturn() -> E {
switch Bool.random() {
case true:
.e
case false:
.#^DOT2?check=DOT^#
}
}
func ifExprDotClosureReturn() -> E {
let x: E = {
if .random() {
.e
} else {
.#^DOT3?check=DOT^#
}
}()
return x
}
func switchExprDotClosureReturn() -> E {
let x: E = {
switch Bool.random() {
case true:
.#^DOT4?check=DOT^#
case false:
.e
}
}()
return x
}
func ifExprBranchInferenceReturn1() -> E {
let fn = {
if .random() {
E.e
} else {
.#^DOT5?check=DOT^#
}
}
return fn()
}
func switchExprBranchInferenceReturn1() -> E {
let fn = {
switch Bool.random() {
case true:
E.e
case false:
.#^DOT6?check=DOT^#
}
}
return fn()
}
func ifExprBranchInferenceReturn2() -> E {
let fn = {
if .random() {
.#^DOT7?check=DOT^#
} else {
E.e
}
}
return fn()
}
func switchExprBranchInferenceReturn2() -> E {
let fn = {
switch Bool.random() {
case true:
.#^DOT8?check=DOT^#
case false:
E.e
}
}
return fn()
}
func ifExprBinding() -> E {
let x: E =
if .random() {
.e
} else {
.#^DOT9?check=DOT^#
}
return x
}
func switchExprBinding() -> E {
let x: E =
switch Bool.random() {
case true:
.e
case false:
.#^DOT10?check=DOT^#
}
return x
}
struct NO {
// Triggering interface type computation of this will cause an assert to fire,
// ensuring we don't attempt to type-check any references to it.
static var TYPECHECK = FORBIDDEN
}
func testSkipTypechecking1() -> E {
// Make sure we don't try to type-check the first branch, as it doesn't
// contribute to the type.
if .random() {
_ = NO.TYPECHECK
throw SomeError()
} else {
.#^DOT11?check=DOT^#
}
}
func testSkipTypechecking2() -> E {
// Make sure we don't try to type-check the second branch, as it doesn't
// contribute to the type.
if .random() {
.#^DOT12?check=DOT^#
} else {
_ = NO.TYPECHECK
throw SomeError()
}
}
func testSkipTypechecking3() -> E {
// Make sure we don't try to type-check the first branch, as it doesn't
// contribute to the type.
switch Bool.random() {
case true:
_ = NO.TYPECHECK
throw SomeError()
case false:
.#^DOT13?check=DOT^#
}
}
func testSkipTypechecking4() -> E {
// Make sure we don't try to type-check the second branch, as it doesn't
// contribute to the type.
switch Bool.random() {
case true:
.#^DOT14?check=DOT^#
case false:
_ = NO.TYPECHECK
throw SomeError()
}
}
func takesE(_ e: E) {}
func testSkipTypechecking5() throws -> E {
// Make sure we only type-check the first branch.
if .random() {
// We can still skip type-checking this tho.
x = NO.TYPECHECK
takesE(.#^DOT15?check=DOT^#)
throw SomeError()
} else {
NO.TYPECHECK
}
}
func testSkipTypechecking6() throws -> E {
// Make sure we only type-check the first branch.
switch Bool.random() {
case true:
// We can still skip type-checking this tho.
x = NO.TYPECHECK
takesE(.#^DOT16?check=DOT^#)
throw SomeError()
case false:
NO.TYPECHECK
}
}
enum F {
case x
}
func takesIntOrDouble(_ i: Int) -> E { E.e }
func takesIntOrDouble(_ i: Double) -> F { F.x }
func testSkipTypechecking7() throws -> E {
let fn = {
switch Bool.random() {
case true:
.#^DOT17?check=DOT^#
case false:
// Make sure we don't end up with an ambiguity here.
takesIntOrDouble(0)
}
}
return fn()
}
func testSkipTypeChecking8() throws -> E {
let e: E = if Bool.random() {
takesE(.#^DOT18?check=DOT^#)
throw NO.TYPECHECK
} else {
NO.TYPECHECK
}
return e
}
func testSkipTypeChecking8() throws -> E {
// Only need to type-check the inner function in this case.
let e: E = if Bool.random() {
func localFunc() {
takesE(.#^DOT19?check=DOT^#)
}
throw NO.TYPECHECK
} else {
NO.TYPECHECK
}
return e
}
func takesArgAndClosure<T>(_ x: Int, fn: () -> T) -> T { fatalError() }
func testSkipTypeChecking9() -> E {
// We need to type-check everything for this.
if Bool.random() {
.e
} else {
takesArgAndClosure(0) {
.#^DOT20?check=DOT^#
}
}
}
func testSkipTypeChecking10() -> E {
// We only need to type-check the inner-most function for this.
if Bool.random() {
NO.TYPECHECK
} else {
takesArgAndClosure(NO.TYPECHECK) {
func foo() {
takesE(.#^DOT21?check=DOT^#)
}
return NO.TYPECHECK
}
}
}
func testSkipTypeChecking11() -> E {
// We only need to type-check the inner-most function for this.
if Bool.random() {
NO.TYPECHECK
} else {
if NO.TYPECHECK {
func foo() {
takesE(.#^DOT22?check=DOT^#)
}
throw NO.TYPECHECK
} else {
NO.TYPECHECK
}
}
}
func testSkipTypeChecking12() -> E {
// Only need to type-check the condition here.
if .#^DOT23?check=BOOL^# {
NO.TYPECHECK
} else {
NO.TYPECHECK
}
}
// BOOL: Begin completions
// BOOL-DAG: Decl[Constructor]/CurrNominal/IsSystem/TypeRelation[Convertible]: init()[#Bool#]; name=init()
// BOOL-DAG: Decl[StaticMethod]/CurrNominal/Flair[ExprSpecific]/IsSystem/TypeRelation[Convertible]: random()[#Bool#]; name=random()
func testSkipTypeChecking13(_ e: E) -> E {
// TODO: Currently this requires type-checking the bodies, but we ought to
// be able to skip them. This is also an issue in closures.
switch e {
case .#^DOT24?check=DOT^#:
.e
default:
.e
}
}
func testSkipTypeChecking14() -> E {
if Bool.random() {
.#^DOT25?check=DOT^#
} else if .random() {
let x = NO.TYPECHECK
throw x
} else if .random() {
let x = NO.TYPECHECK
throw x
} else {
let x = NO.TYPECHECK
throw x
}
}
func testSkipTypeChecking14() -> E {
switch Bool.random() {
case true:
.#^DOT26?check=DOT^#
case _ where Bool.random():
let x = NO.TYPECHECK
throw x
case _ where Bool.random():
let x = NO.TYPECHECK
throw x
default:
let x = NO.TYPECHECK
throw x
}
}
func testSkipTypechecking15(_ x: inout Int) -> E {
switch Bool.random() {
case true:
.#^DOT27?check=DOT^#
case false:
x = 0
}
}
// DOT: Begin completions, 2 items
// DOT-DAG: Decl[EnumElement]/CurrNominal/Flair[ExprSpecific]/TypeRelation[Convertible]: e[#E#]; name=e
// DOT-DAG: Decl[EnumElement]/CurrNominal/Flair[ExprSpecific]/TypeRelation[Convertible]: f({#Int#})[#E#]; name=f()
// https://github.com/apple/swift/issues/71384
func testCompleteBinding1(_ e: E) -> Int {
switch e {
case .f(let foobar):
#^BINDING1?check=BINDING^#
case .e:
0
}
}
func testCompleteBinding2(_ x: Int?) -> Int {
if let foobar = x {
#^BINDING2?check=BINDING^#
} else {
0
}
}
// BINDING-DAG: Decl[LocalVar]/Local/TypeRelation[Convertible]: foobar[#Int#]; name=foobar
|