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 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2023 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
// This test file has been translated from swift/test/Parse/effectful_properties.swift
import XCTest
final class EffectfulPropertiesTests: ParserTestCase {
func testEffectfulProperties1() {
assertParse(
"""
struct MyProps {
var prop1 : Int {
get async { }
}
var prop2 : Int {
get throws { }
}
var prop3 : Int {
get async throws { }
}
var prop1mut : Int {
mutating get async { }
}
var prop2mut : Int {
mutating get throws { }
}
var prop3mut : Int {
mutating get async throws { }
}
}
"""
)
}
func testEffectfulProperties2() {
assertParse(
"""
struct X1 {
subscript(_ i : Int) -> Int {
get async {}
}
}
"""
)
}
func testEffectfulProperties3() {
assertParse(
"""
class X2 {
subscript(_ i : Int) -> Int {
get throws {}
}
}
"""
)
}
func testEffectfulProperties4() {
assertParse(
"""
struct X3 {
subscript(_ i : Int) -> Int {
get async throws {}
}
}
"""
)
}
func testEffectfulProperties5() {
assertParse(
"""
struct BadSubscript1 {
subscript(_ i : Int) -> Int {
get async throws {}
set {}
}
}
"""
)
}
func testEffectfulProperties6() {
assertParse(
"""
struct BadSubscript2 {
subscript(_ i : Int) -> Int {
get throws {}
set throws {}
}
}
"""
)
}
func testEffectfulProperties7() {
assertParse(
"""
struct S {
var prop2 : Int {
mutating get async throws { 0 }
nonmutating set {}
}
}
"""
)
}
func testEffectfulProperties8() {
assertParse(
"""
var prop3 : Bool {
_read { yield prop3 }
get throws { false }
get async { true }
get {}
}
"""
)
}
func testEffectfulProperties9() {
assertParse(
"""
enum E {
private(set) var prop4 : Double {
set {}
get async throws { 1.1 }
_modify { yield &prop4 }
}
}
"""
)
}
func testEffectfulProperties10() {
assertParse(
"""
protocol P {
associatedtype T
var prop1 : T { get async throws }
var prop2 : T { get async throws set }
var prop3 : T { get throws set }
var prop4 : T { get async }
var prop5 : T { mutating get async throws }
var prop6 : T { mutating get throws }
var prop7 : T { mutating get async nonmutating set }
}
"""
)
}
func testEffectfulProperties11() {
assertParse(
"""
///////////////////
// invalid syntax
"""
)
}
func testEffectfulProperties12() {
assertParse(
"""
var bad1 : Int {
get 1️⃣rethrows { 0 }
set 2️⃣rethrows { }
}
""",
diagnostics: [
DiagnosticSpec(
message: "expected throwing specifier; did you mean 'throws'?",
fixIts: ["replace 'rethrows' with 'throws'"]
),
DiagnosticSpec(
locationMarker: "2️⃣",
message: "expected throwing specifier; did you mean 'throws'?",
fixIts: ["replace 'rethrows' with 'throws'"]
),
],
fixedSource: """
var bad1 : Int {
get throws { 0 }
set throws { }
}
"""
)
}
func testEffectfulProperties13() {
assertParse(
"""
var bad2 : Int {
get 1️⃣reasync { 0 }
set 2️⃣reasync { }
}
""",
diagnostics: [
DiagnosticSpec(
locationMarker: "1️⃣",
message: "expected async specifier; did you mean 'async'?",
fixIts: ["replace 'reasync' with 'async'"]
),
DiagnosticSpec(
locationMarker: "2️⃣",
message: "expected async specifier; did you mean 'async'?",
fixIts: ["replace 'reasync' with 'async'"]
),
],
fixedSource: """
var bad2 : Int {
get async { 0 }
set async { }
}
"""
)
}
func testEffectfulProperties14() {
assertParse(
"""
var bad3 : Int {
_read async { yield 0 }
set(theValue) async { }
}
"""
)
}
func testEffectfulProperties15a() {
assertParse(
"""
var bad4 : Int = 0 {
willSet(theValue) 1️⃣reasync 2️⃣rethrows async 3️⃣throws {}
}
""",
diagnostics: [
DiagnosticSpec(
locationMarker: "1️⃣",
message: "expected async specifier; did you mean 'async'?",
fixIts: ["replace 'reasync' with 'async'"]
),
DiagnosticSpec(
locationMarker: "2️⃣",
message: "'rethrows' conflicts with 'throws'",
notes: [NoteSpec(locationMarker: "3️⃣", message: "'throws' declared here")],
fixIts: ["remove redundant 'rethrows'"]
),
],
fixedSource: """
var bad4 : Int = 0 {
willSet(theValue) async async throws {}
}
"""
)
}
func testEffectfulProperties15b() {
assertParse(
"""
var bad4 : Int = 0 {
didSet throws 1️⃣bogus {}
}
""",
diagnostics: [
DiagnosticSpec(message: "unexpected code 'bogus' in accessor")
]
)
}
func testEffectfulProperties16() {
assertParse(
"""
var bad5 : Int {
get 1️⃣bogus 2️⃣rethrows {}
}
""",
diagnostics: [
DiagnosticSpec(locationMarker: "1️⃣", message: "unexpected code 'bogus rethrows' in accessor")
]
)
}
func testEffectfulProperties17() {
assertParse(
"""
var bad6 : Int {
get 1️⃣rethrows 2️⃣-> Int { 0 }
}
""",
diagnostics: [
DiagnosticSpec(
locationMarker: "1️⃣",
message: "expected throwing specifier; did you mean 'throws'?",
fixIts: ["replace 'rethrows' with 'throws'"]
),
DiagnosticSpec(locationMarker: "2️⃣", message: "unexpected code '-> Int' in accessor"),
],
fixedSource: """
var bad6 : Int {
get throws -> Int { 0 }
}
"""
)
}
func testEffectfulProperties18() {
assertParse(
"""
var bad7 : Double {
get throws 1️⃣async { 3.14 }
}
""",
diagnostics: [
DiagnosticSpec(message: "'async' must precede 'throws'", fixIts: ["move 'async' in front of 'throws'"])
],
fixedSource: """
var bad7 : Double {
get async throws { 3.14 }
}
"""
)
}
func testEffectfulProperties19() {
assertParse(
"""
var bad8 : Double {
get {}
_modify throws 1️⃣async { yield &bad8 }
}
""",
diagnostics: [
DiagnosticSpec(message: "'async' must precede 'throws'", fixIts: ["move 'async' in front of 'throws'"])
],
fixedSource: """
var bad8 : Double {
get {}
_modify async throws { yield &bad8 }
}
"""
)
}
func testEffectfulProperties20() {
assertParse(
"""
protocol BadP {
var prop2 : Int { get 1️⃣bogus rethrows set }
var prop3 : Int { get 2️⃣rethrows 3️⃣bogus set }
var prop4 : Int { get 4️⃣reasync 5️⃣bogus set }
var prop5 : Int { get throws 6️⃣async }
}
""",
diagnostics: [
DiagnosticSpec(locationMarker: "1️⃣", message: "unexpected code 'bogus rethrows set' in variable"),
DiagnosticSpec(
locationMarker: "2️⃣",
message: "expected throwing specifier; did you mean 'throws'?",
fixIts: ["replace 'rethrows' with 'throws'"]
),
DiagnosticSpec(locationMarker: "3️⃣", message: "unexpected code 'bogus set' in variable"),
DiagnosticSpec(
locationMarker: "4️⃣",
message: "expected async specifier; did you mean 'async'?",
fixIts: ["replace 'reasync' with 'async'"]
),
DiagnosticSpec(locationMarker: "5️⃣", message: "unexpected code 'bogus set' in variable"),
DiagnosticSpec(
locationMarker: "6️⃣",
message: "'async' must precede 'throws'",
fixIts: ["move 'async' in front of 'throws'"]
),
],
fixedSource: """
protocol BadP {
var prop2 : Int { get bogus rethrows set }
var prop3 : Int { get throws bogus set }
var prop4 : Int { get async bogus set }
var prop5 : Int { get async throws }
}
"""
)
}
}
|