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 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459
|
//===----------------------------------------------------------------------===//
//
// 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/enum.swift
import XCTest
final class EnumTests: ParserTestCase {
func testEnum2() {
assertParse(
"""
// Windows does not support FP80
// XFAIL: OS=windows-msvc
"""
)
}
func testEnum3() {
assertParse(
"""
enum Empty {}
"""
)
}
func testEnum4() {
assertParse(
"""
enum Boolish {
case falsy
case truthy
init() { self = .falsy }
}
"""
)
}
func testEnum5() {
assertParse(
"""
var b = Boolish.falsy
b = .truthy
"""
)
}
func testEnum6() {
assertParse(
"""
enum Optionable<T> {
case Nought
case Mere(T)
}
"""
)
}
func testEnum7() {
assertParse(
"""
var o = Optionable<Int>.Nought
o = .Mere(0)
"""
)
}
func testEnum8() {
assertParse(
"""
enum Color { case Red, Green, Grayscale(Int), Blue }
"""
)
}
func testEnum9() {
assertParse(
"""
var c = Color.Red
c = .Green
c = .Grayscale(255)
c = .Blue
"""
)
}
func testEnum10() {
assertParse(
"""
let partialApplication = Color.Grayscale
"""
)
}
func testEnum11() {
assertParse(
"""
// Cases are excluded from non-enums.
1️⃣case FloatingCase
""",
diagnostics: [
DiagnosticSpec(message: "'case' can only appear inside a 'switch' statement or 'enum' declaration")
]
)
}
func testEnum12() {
assertParse(
"""
struct SomeStruct {
case StructCase
}
"""
)
}
func testEnum13() {
assertParse(
"""
class SomeClass {
case ClassCase
}
"""
)
}
func testEnum14() {
assertParse(
"""
enum EnumWithExtension1 {
case A1
}
extension EnumWithExtension1 {
case A2
}
"""
)
}
func testEnum15() {
assertParse(
"""
// Attributes for enum cases.
"""
)
}
func testEnum16() {
assertParse(
"""
enum EnumCaseAttributes {
@xyz case EmptyAttributes
}
"""
)
}
// Recover when a switch 'case' label is spelled inside an enum (or outside).
func testEnum17a() {
assertParse(
"""
enum SwitchEnvy {
case X1️⃣:
}
""",
diagnostics: [
DiagnosticSpec(message: "unexpected code ':' in enum")
]
)
}
func testEnum17b() {
assertParse(
"""
enum SwitchEnvy {
case X(Y)1️⃣:
}
""",
diagnostics: [
DiagnosticSpec(message: "unexpected code ':' in enum")
]
)
}
func testEnum17c() {
assertParse(
"""
enum SwitchEnvy {
case X, Y1️⃣:
}
""",
diagnostics: [
DiagnosticSpec(message: "unexpected code ':' in enum")
]
)
}
func testEnum17d() {
assertParse(
"""
enum SwitchEnvy {
case X 1️⃣where true:
}
""",
diagnostics: [
DiagnosticSpec(message: "unexpected code 'where true:' in enum")
]
)
}
func testEnum17e() {
assertParse(
"""
enum SwitchEnvy {
case X(Y), Z(W)1️⃣:
}
""",
diagnostics: [
DiagnosticSpec(message: "unexpected code ':' in enum")
]
)
}
func testEnum17f() {
assertParse(
"""
enum SwitchEnvy {
case X(Y) 1️⃣where true:
}
""",
diagnostics: [
DiagnosticSpec(message: "unexpected code 'where true:' in enum")
]
)
}
func testEnum17g() {
assertParse(
"""
enum SwitchEnvy {
case 1️⃣02️⃣:
}
""",
diagnostics: [
DiagnosticSpec(
locationMarker: "1️⃣",
message: "identifier can only start with a letter or underscore, not a number"
),
DiagnosticSpec(locationMarker: "2️⃣", message: "unexpected code ':' in enum"),
]
)
}
func testEnum17h() {
assertParse(
"""
enum SwitchEnvy {
case 1️⃣_2️⃣:
}
""",
diagnostics: [
DiagnosticSpec(locationMarker: "1️⃣", message: "'_' cannot be used as an identifier here"),
DiagnosticSpec(locationMarker: "2️⃣", message: "unexpected code ':' in enum"),
]
)
}
func testEnum17i() {
assertParse(
"""
enum SwitchEnvy {
case 1️⃣(_, var x2️⃣, 3️⃣0)4️⃣:
}
""",
diagnostics: [
DiagnosticSpec(locationMarker: "1️⃣", message: "expected identifier in enum case", fixIts: ["insert identifier"]),
DiagnosticSpec(
locationMarker: "2️⃣",
message: "expected ':' and type in parameter",
fixIts: ["insert ':' and type"]
),
DiagnosticSpec(locationMarker: "3️⃣", message: "unexpected code '0' in parameter clause"),
DiagnosticSpec(locationMarker: "4️⃣", message: "unexpected code ':' in enum"),
],
fixedSource: """
enum SwitchEnvy {
case <#identifier#>(_, var x: <#type#>, 0):
}
"""
)
}
func testEnum18() {
assertParse(
"""
enum HasMethodsPropertiesAndCtors {
case TweedleDee
case TweedleDum
func method() {}
func staticMethod() {}
init() {}
subscript(x:Int) -> Int {
return 0
}
var property : Int {
return 0
}
}
"""
)
}
func testEnum19() {
assertParse(
"""
enum ImproperlyHasIVars {
case Flopsy
case Mopsy
var ivar : Int
}
"""
)
}
func testEnum20() {
// We used to crash on this. rdar://14678675
assertParse(
"""
enum rdar14678675 {
case U1, 1️⃣
case U2
case U3
}
""",
diagnostics: [
DiagnosticSpec(message: "expected identifier in enum case", fixIts: ["insert identifier"])
],
fixedSource: """
enum rdar14678675 {
case U1, <#identifier#>
case U2
case U3
}
"""
)
}
func testEnum21a() {
assertParse(
"""
enum Recovery1 {
case1️⃣:
}
""",
diagnostics: [
DiagnosticSpec(message: "expected identifier in enum case", fixIts: ["insert identifier"]),
DiagnosticSpec(message: "unexpected code ':' in enum"),
],
fixedSource: """
enum Recovery1 {
case <#identifier#>:
}
"""
)
}
func testEnum21b() {
assertParse(
"""
enum Recovery2 {
case UE11️⃣:
}
""",
diagnostics: [
DiagnosticSpec(message: "unexpected code ':' in enum")
]
)
}
func testEnum21c() {
assertParse(
"""
enum Recovery3 {
case UE2(Void)1️⃣:
}
""",
diagnostics: [
DiagnosticSpec(message: "unexpected code ':' in enum")
]
)
}
func testEnum21d() {
assertParse(
"""
enum Recovery4 {
case 1️⃣Self 2️⃣Self
}
""",
diagnostics: [
DiagnosticSpec(
locationMarker: "1️⃣",
message: "keyword 'Self' cannot be used as an identifier here",
fixIts: ["if this name is unavoidable, use backticks to escape it"]
),
DiagnosticSpec(locationMarker: "2️⃣", message: "unexpected 'Self' keyword in enum"),
],
fixedSource: """
enum Recovery4 {
case `Self` Self
}
"""
)
}
func testEnum21e() {
assertParse(
"""
enum Recovery5 {
case 1️⃣.UE3
case 2️⃣.UE4, 3️⃣.UE5
}
""",
diagnostics: [
DiagnosticSpec(locationMarker: "1️⃣", message: "unexpected code '.' in enum case"),
DiagnosticSpec(locationMarker: "2️⃣", message: "unexpected code '.' in enum case"),
DiagnosticSpec(locationMarker: "3️⃣", message: "unexpected code '.' in enum case"),
]
)
}
func testEnum21f() {
assertParse(
"""
enum Recovery6 {
case Snout, 1️⃣_;
case 2️⃣_;
case Tusk, 3️⃣
}
""",
diagnostics: [
DiagnosticSpec(locationMarker: "1️⃣", message: "'_' cannot be used as an identifier here"),
DiagnosticSpec(locationMarker: "2️⃣", message: "'_' cannot be used as an identifier here"),
DiagnosticSpec(locationMarker: "3️⃣", message: "expected identifier in enum case", fixIts: ["insert identifier"]),
],
fixedSource: """
enum Recovery6 {
case Snout, _;
case _;
case Tusk, <#identifier#>
}
"""
)
}
func testEnum22() {
assertParse(
"""
enum RawTypeEmpty : Int {}
"""
)
}
func testEnum23() {
assertParse(
"""
enum Raw : Int {
case Ankeny, Burnside
}
"""
)
}
func testEnum24() {
assertParse(
"""
enum MultiRawType : Int64, Int32 {
case Couch, Davis
}
"""
)
}
func testEnum25() {
assertParse(
"""
protocol RawTypeNotFirstProtocol {}
enum RawTypeNotFirst : RawTypeNotFirstProtocol, Int {
case E
}
"""
)
}
func testEnum26() {
assertParse(
"""
enum ExpressibleByRawTypeNotLiteral : Array<Int> {
case Ladd, Elliott, Sixteenth, Harrison
}
"""
)
}
func testEnum27() {
assertParse(
"""
enum RawTypeCircularityA : RawTypeCircularityB, ExpressibleByIntegerLiteral {
case Morrison, Belmont, Madison, Hawthorne
init(integerLiteral value: Int) {
self = .Morrison
}
}
"""
)
}
func testEnum28() {
assertParse(
"""
enum RawTypeCircularityB : RawTypeCircularityA, ExpressibleByIntegerLiteral {
case Willamette, Columbia, Sandy, Multnomah
init(integerLiteral value: Int) {
self = .Willamette
}
}
"""
)
}
func testEnum29() {
assertParse(
"""
struct ExpressibleByFloatLiteralOnly : ExpressibleByFloatLiteral {
init(floatLiteral: Double) {}
}
enum ExpressibleByRawTypeNotIntegerLiteral : ExpressibleByFloatLiteralOnly {
case Everett
case Flanders
}
"""
)
}
func testEnum30() {
assertParse(
"""
enum RawTypeWithIntValues : Int {
case Glisan = 17, Hoyt = 219, Irving, Johnson = 97209
}
"""
)
}
func testEnum31() {
assertParse(
"""
enum RawTypeWithNegativeValues : Int {
case Glisan = -17, Hoyt = -219, Irving, Johnson = -97209
case AutoIncAcrossZero = -1, Zero, One
}
"""
)
}
func testEnum32() {
assertParse(
#"""
enum RawTypeWithUnicodeScalarValues : UnicodeScalar {
case Kearney = "K"
case Lovejoy
case Marshall = "M"
}
"""#
)
}
func testEnum33() {
assertParse(
#"""
enum RawTypeWithCharacterValues : Character {
case First = "い"
case Second
case Third = "は"
}
"""#
)
}
func testEnum34() {
assertParse(
#"""
enum RawTypeWithCharacterValues_Correct : Character {
case First = "😅" // ok
case Second = "👩👩👧👦" // ok
case Third = "👋🏽" // ok
case Fourth = "\u{1F3F4}\u{E0067}\u{E0062}\u{E0065}\u{E006E}\u{E0067}\u{E007F}" // ok
}
"""#
)
}
func testEnum35() {
assertParse(
#"""
enum RawTypeWithCharacterValues_Error1 : Character {
case First = "abc"
}
"""#
)
}
func testEnum36() {
assertParse(
"""
enum RawTypeWithFloatValues : Float {
case Northrup = 1.5
case Overton
case Pettygrove = 2.25
}
"""
)
}
func testEnum37() {
assertParse(
#"""
enum RawTypeWithStringValues : String {
case Primrose // okay
case Quimby = "Lucky Lab"
case Raleigh // okay
case Savier = "McMenamin's", Thurman = "Kenny and Zuke's"
}
"""#
)
}
func testEnum38() {
assertParse(
"""
enum RawValuesWithoutRawType {
case Upshur = 22
}
"""
)
}
func testEnum39() {
assertParse(
"""
enum RawTypeWithRepeatValues : Int {
case Vaughn = 22
case Wilson = 22
}
"""
)
}
func testEnum40() {
assertParse(
"""
enum RawTypeWithRepeatValues2 : Double {
case Vaughn = 22
case Wilson = 22.0
}
"""
)
}
func testEnum41() {
assertParse(
"""
enum RawTypeWithRepeatValues3 : Double {
// 2^63-1
case Vaughn = 9223372036854775807
case Wilson = 9223372036854775807.0
}
"""
)
}
func testEnum42() {
assertParse(
"""
enum RawTypeWithRepeatValues4 : Double {
// 2^64-1
case Vaughn = 18446744073709551615
case Wilson = 18446744073709551615.0
}
"""
)
}
func testEnum43() {
assertParse(
"""
enum RawTypeWithRepeatValues5 : Double {
// 2^65-1
case Vaughn = 36893488147419103231
case Wilson = 36893488147419103231.0
}
"""
)
}
func testEnum44() {
assertParse(
"""
enum RawTypeWithRepeatValues6 : Double {
// 2^127-1
case Vaughn = 170141183460469231731687303715884105727
case Wilson = 170141183460469231731687303715884105727.0
}
"""
)
}
func testEnum45() {
assertParse(
"""
enum RawTypeWithRepeatValues7 : Double {
// 2^128-1
case Vaughn = 340282366920938463463374607431768211455
case Wilson = 340282366920938463463374607431768211455.0
}
"""
)
}
func testEnum46() {
assertParse(
#"""
enum RawTypeWithRepeatValues8 : String {
case Vaughn = "XYZ"
case Wilson = "XYZ"
}
"""#
)
}
func testEnum47() {
assertParse(
"""
enum RawTypeWithNonRepeatValues : Double {
case SantaClara = 3.7
case SanFernando = 7.4
case SanAntonio = -3.7
case SanCarlos = -7.4
}
"""
)
}
func testEnum48() {
assertParse(
"""
enum RawTypeWithRepeatValuesAutoInc : Double {
case Vaughn = 22
case Wilson
case Yeon = 23
}
"""
)
}
func testEnum49() {
assertParse(
"""
enum RawTypeWithRepeatValuesAutoInc2 : Double {
case Vaughn = 23
case Wilson = 22
case Yeon
}
"""
)
}
func testEnum50() {
assertParse(
"""
enum RawTypeWithRepeatValuesAutoInc3 : Double {
case Vaughn
case Wilson
case Yeon = 1
}
"""
)
}
func testEnum51() {
assertParse(
#"""
enum RawTypeWithRepeatValuesAutoInc4 : String {
case A = "B"
case B
}
"""#
)
}
func testEnum52() {
assertParse(
#"""
enum RawTypeWithRepeatValuesAutoInc5 : String {
case A
case B = "A"
}
"""#
)
}
func testEnum53() {
assertParse(
#"""
enum RawTypeWithRepeatValuesAutoInc6 : String {
case A
case B
case C = "B"
}
"""#
)
}
func testEnum54() {
assertParse(
"""
enum NonliteralRawValue : Int {
case Yeon = 100 + 20 + 3
}
"""
)
}
func testEnum55() {
assertParse(
"""
enum RawTypeWithPayload : Int {
case Powell(Int)
case Terwilliger(Int) = 17
}
"""
)
}
func testEnum56() {
assertParse(
#"""
enum RawTypeMismatch : Int {
case Barbur = "foo"
}
"""#
)
}
func testEnum57() {
assertParse(
"""
enum DuplicateMembers1 {
case Foo
case Foo
}
"""
)
}
func testEnum58() {
assertParse(
"""
enum DuplicateMembers2 {
case Foo, Bar
case Foo
case Bar
}
"""
)
}
func testEnum59() {
assertParse(
"""
enum DuplicateMembers3 {
case Foo
case Foo(Int)
}
"""
)
}
func testEnum60() {
assertParse(
"""
enum DuplicateMembers4 : Int {
case Foo = 1
case Foo = 2
}
"""
)
}
func testEnum61() {
assertParse(
"""
enum DuplicateMembers5 : Int {
case Foo = 1
case Foo = 1 + 1
}
"""
)
}
func testEnum62() {
assertParse(
"""
enum DuplicateMembers6 {
case Foo // expected-note 2{{'Foo' previously declared here}}
case Foo
case Foo
}
"""
)
}
func testEnum63() {
assertParse(
#"""
enum DuplicateMembers7 : String {
case Foo
case Foo = "Bar"
}
"""#
)
}
func testEnum64() {
assertParse(
#"""
// Refs to duplicated enum cases shouldn't crash the compiler.
// rdar://problem/20922401
func check20922401() -> String {
let x: DuplicateMembers1 = .Foo
switch x {
case .Foo:
return "Foo"
}
}
"""#
)
}
func testEnum65() {
assertParse(
"""
enum PlaygroundRepresentation : UInt8 {
case Class = 1
case Struct = 2
case Tuple = 3
case Enum = 4
case Aggregate = 5
case Container = 6
case IDERepr = 7
case Gap = 8
case ScopeEntry = 9
case ScopeExit = 10
case Error = 11
case IndexContainer = 12
case KeyContainer = 13
case MembershipContainer = 14
case Unknown = 0xFF
static func fromByte(byte : UInt8) -> PlaygroundRepresentation {
let repr = PlaygroundRepresentation(rawValue: byte)
if repr == .none { return .Unknown } else { return repr! }
}
}
"""
)
}
func testEnum66() {
assertParse(
"""
struct ManyLiteralable : ExpressibleByIntegerLiteral, ExpressibleByStringLiteral, Equatable {
init(stringLiteral: String) {}
init(integerLiteral: Int) {}
init(unicodeScalarLiteral: String) {}
init(extendedGraphemeClusterLiteral: String) {}
}
func ==(lhs: ManyLiteralable, rhs: ManyLiteralable) -> Bool { return true }
"""
)
}
func testEnum67() {
assertParse(
"""
enum ManyLiteralA : ManyLiteralable {
case A
case B = 0
}
"""
)
}
func testEnum68() {
assertParse(
#"""
enum ManyLiteralB : ManyLiteralable {
case A = "abc"
case B
}
"""#
)
}
func testEnum69() {
assertParse(
#"""
enum ManyLiteralC : ManyLiteralable {
case A
case B = "0"
}
"""#
)
}
func testEnum70() {
assertParse(
"""
// rdar://problem/22476643
public protocol RawValueA: RawRepresentable
{
var rawValue: Double { get }
}
"""
)
}
func testEnum71() {
assertParse(
"""
enum RawValueATest: Double, RawValueA {
case A, B
}
"""
)
}
func testEnum72() {
assertParse(
"""
public protocol RawValueB
{
var rawValue: Double { get }
}
"""
)
}
func testEnum73() {
assertParse(
"""
enum RawValueBTest: Double, RawValueB {
case A, B
}
"""
)
}
func testEnum74() {
assertParse(
"""
enum foo : String {
case bar = nil
}
"""
)
}
func testEnum75() {
assertParse(
"""
// Static member lookup from instance methods
"""
)
}
func testEnum76() {
assertParse(
"""
struct EmptyStruct {}
"""
)
}
func testEnum77() {
assertParse(
"""
enum EnumWithStaticMember {
static let staticVar = EmptyStruct()
func foo() {
let _ = staticVar
}
}
"""
)
}
func testEnum78() {
assertParse(
"""
// SE-0036:
"""
)
}
func testEnum79() {
assertParse(
"""
struct SE0036_Auxiliary {}
"""
)
}
func testEnum80() {
assertParse(
"""
enum SE0036 {
case A
case B(SE0036_Auxiliary)
case C(SE0036_Auxiliary)
static func staticReference() {
_ = A
_ = self.A
_ = SE0036.A
}
func staticReferenceInInstanceMethod() {
_ = A
_ = self.A
_ = SE0036.A
}
static func staticReferenceInSwitchInStaticMethod() {
switch SE0036.A {
case A: break
case B(_): break
case C(let x): _ = x; break
}
}
func staticReferenceInSwitchInInstanceMethod() {
switch self {
case A: break
case B(_): break
case C(let x): _ = x; break
}
}
func explicitReferenceInSwitch() {
switch SE0036.A {
case SE0036.A: break
case SE0036.B(_): break
case SE0036.C(let x): _ = x; break
}
}
func dotReferenceInSwitchInInstanceMethod() {
switch self {
case .A: break
case .B(_): break
case .C(let x): _ = x; break
}
}
static func dotReferenceInSwitchInStaticMethod() {
switch SE0036.A {
case .A: break
case .B(_): break
case .C(let x): _ = x; break
}
}
init() {
self = .A
self = A
self = SE0036.A
self = .B(SE0036_Auxiliary())
self = B(SE0036_Auxiliary())
self = SE0036.B(SE0036_Auxiliary())
}
}
"""
)
}
func testEnum81() {
assertParse(
"""
enum SE0036_Generic<T> {
case A(x: T)
func foo() {
switch self {
case A(_): break
}
switch self {
case .A(let a): print(a)
}
switch self {
case SE0036_Generic.A(let a): print(a)
}
}
}
"""
)
}
func testEnum81b() {
assertParse(
"""
switch self {
case A(_): break
}
"""
)
}
func testEnum82() {
assertParse(
"""
enum 1️⃣switch {}
""",
diagnostics: [
DiagnosticSpec(
message: "keyword 'switch' cannot be used as an identifier here",
fixIts: ["if this name is unavoidable, use backticks to escape it"]
)
],
fixedSource: """
enum `switch` {}
"""
)
}
func testEnum83() {
assertParse(
"""
enum SE0155 {
case emptyArgs()
}
"""
)
}
func testEnum84() {
assertParse(
"""
// https://github.com/apple/swift/issues/53662
"""
)
}
func testEnum85() {
assertParse(
"""
enum E_53662 {
case identifier
case 1️⃣operator
case identifier2
}
""",
diagnostics: [
DiagnosticSpec(
message: "keyword 'operator' cannot be used as an identifier here",
fixIts: ["if this name is unavoidable, use backticks to escape it"]
)
],
fixedSource: """
enum E_53662 {
case identifier
case `operator`
case identifier2
}
"""
)
}
func testEnum86() {
assertParse(
"""
enum E_53662_var {
case identifier
case 1️⃣var
case identifier2
}
""",
diagnostics: [
DiagnosticSpec(
message: "keyword 'var' cannot be used as an identifier here",
fixIts: ["if this name is unavoidable, use backticks to escape it"]
)
],
fixedSource: """
enum E_53662_var {
case identifier
case `var`
case identifier2
}
"""
)
}
func testEnum87() {
assertParse(
"""
enum E_53662_underscore {
case identifier
case 1️⃣_
case identifier2
}
""",
diagnostics: [
DiagnosticSpec(message: "'_' cannot be used as an identifier here")
]
)
}
func testEnum88() {
assertParse(
"""
enum E_53662_Comma {
case a, b, c, 1️⃣func, d
}
""",
diagnostics: [
DiagnosticSpec(
message: "keyword 'func' cannot be used as an identifier here",
fixIts: ["if this name is unavoidable, use backticks to escape it"]
)
],
fixedSource: """
enum E_53662_Comma {
case a, b, c, `func`, d
}
"""
)
}
func testEnum89() {
assertParse(
"""
enum E_53662_Newline {
case identifier1
case identifier2
case 1️⃣
case identifier
}
""",
diagnostics: [
DiagnosticSpec(message: "expected identifier in enum case", fixIts: ["insert identifier"])
],
fixedSource: """
enum E_53662_Newline {
case identifier1
case identifier2
case <#identifier#>
case identifier
}
"""
)
}
func testEnum90() {
assertParse(
"""
enum E_53662_Newline2 {
case 1️⃣
func foo() {}
}
""",
diagnostics: [
DiagnosticSpec(message: "expected identifier in enum case", fixIts: ["insert identifier"])
],
fixedSource: """
enum E_53662_Newline2 {
case <#identifier#>
func foo() {}
}
"""
)
}
func testEnum91() {
assertParse(
"""
enum E_53662_PatternMatching {
case 1️⃣let 2️⃣.foo(x, y):
}
""",
diagnostics: [
DiagnosticSpec(
locationMarker: "1️⃣",
message: "keyword 'let' cannot be used as an identifier here",
fixIts: ["if this name is unavoidable, use backticks to escape it"]
),
DiagnosticSpec(
locationMarker: "2️⃣",
message: "unexpected code '.foo(x, y):' in enum"
),
],
fixedSource: """
enum E_53662_PatternMatching {
case `let` .foo(x, y):
}
"""
)
}
func testEnum92() {
assertParse(
#"""
enum CasesWithMissingElement: Int {
case a = "hello", 1️⃣
case b = "hello", 2️⃣
}
"""#,
diagnostics: [
DiagnosticSpec(locationMarker: "1️⃣", message: "expected identifier in enum case", fixIts: ["insert identifier"]),
DiagnosticSpec(locationMarker: "2️⃣", message: "expected identifier in enum case", fixIts: ["insert identifier"]),
],
fixedSource: #"""
enum CasesWithMissingElement: Int {
case a = "hello", <#identifier#>
case b = "hello", <#identifier#>
}
"""#
)
}
func testEnumCaseWithWildcardAsFirstName() {
assertParse(
#"""
enum Foo {
case a(_ x: Int)
}
"""#
)
}
func parseEnumCaseElementParameterOnNewline() {
assertParse(
"""
enum E {
case a
(Int)
}
"""
)
}
}
|