lib-ruby-parser 3.0.11

Ruby parser
Documentation
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
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
// This file is auto-generated by codegen/rust/messages/native/variants.rs

crate::use_native_or_external!(StringPtr);

/// Emitted for code
/// ```text
/// 1.2.3
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct FractionAfterNumeric {
}

impl FractionAfterNumeric {
}

/// Emitted for code like
/// ```text
/// foo.2
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct NoDigitsAfterDot {
}

impl NoDigitsAfterDot {
}

/// Emitted for code like
/// ```text
/// %k[foo]
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct UnknownTypeOfPercentString {
}

impl UnknownTypeOfPercentString {
}

/// Emitted for code like
/// ```text
/// 0b
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct NumericLiteralWithoutDigits {
}

impl NumericLiteralWithoutDigits {
}

/// Emitted for code like
/// ```text
/// %w[foo bar
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct UnterminatedList {
}

impl UnterminatedList {
}

/// Emitted for code like
/// ```text
/// /foo
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct UnterminatedRegexp {
}

impl UnterminatedRegexp {
}

/// Emitted for code like
/// ```text
/// "foo
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct UnterminatedString {
}

impl UnterminatedString {
}

/// Emitted for code like
/// ```text
/// %s
/// //    ^ EOF, not "
///
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct UnterminatedQuotedString {
}

impl UnterminatedQuotedString {
}

/// Emitted for code like
/// ```text
/// "\ufoo"
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct InvalidUnicodeEscape {
}

impl InvalidUnicodeEscape {
}

/// Emitted for code like
/// ```text
/// "\u{999999}"
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct TooLargeUnicodeCodepoint {
}

impl TooLargeUnicodeCodepoint {
}

/// Emitted for code like
/// ```text
/// "\u{d800}"
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct InvalidUnicodeCodepoint {
}

impl InvalidUnicodeCodepoint {
}

/// Emitted for code like
/// ```text
/// ?\u{41 42}
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct MultipleCodepointAtSingleChar {
}

impl MultipleCodepointAtSingleChar {
}

/// Emitted for code like
/// ```text
/// "\M-"
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct InvalidEscapeCharacter {
}

impl InvalidEscapeCharacter {
}

/// Emitted for code like
/// ```text
/// "\xZZ"
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct InvalidHexEscape {
}

impl InvalidHexEscape {
}

/// Emitted for code like
/// ```text
/// <<-HERE
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct UnterminatedHeredoc {
        /// Heredoc identifier
    pub heredoc_id: StringPtr,
}

impl UnterminatedHeredoc {
    /// Returns `heredoc_id` field
    pub fn get_heredoc_id(&self) -> &StringPtr {
        &self.heredoc_id
    }
}

/// Emitted for code like
/// ```text
/// <<-"HERE
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct UnterminatedHeredocId {
}

impl UnterminatedHeredocId {
}

/// Emitted for code like
/// ```text
/// eval("foo \r = 42")
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct SlashRAtMiddleOfLine {
}

impl SlashRAtMiddleOfLine {
}

/// Emitted for code like (only in $VERBOSE mode)
/// ```text
/// foo **arg
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct DStarInterpretedAsArgPrefix {
}

impl DStarInterpretedAsArgPrefix {
}

/// Emitted for code like (only in $VERBOSE mode)
/// ```text
/// foo *arg
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct StarInterpretedAsArgPrefix {
}

impl StarInterpretedAsArgPrefix {
}

/// Emitted for code like (only in $VERBOSE mode)
/// ```text
/// foo &arg
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct AmpersandInterpretedAsArgPrefix {
}

impl AmpersandInterpretedAsArgPrefix {
}

/// Emitted for code like
/// ```text
/// range = 1...
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct TripleDotAtEol {
}

impl TripleDotAtEol {
}

/// Emitted for code like (only in $VERBOSE mode)
/// ```text
/// def m (a, b, c); end
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct ParenthesesIterpretedAsArglist {
}

impl ParenthesesIterpretedAsArglist {
}

/// Emitted for code like (only in $VERBOSE mode)
/// ```text
/// m +foo
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct AmbiguousFirstArgument {
        /// Operator that is ambiguous
    pub operator: u8,
}

impl AmbiguousFirstArgument {
    /// Returns `operator` field
    pub fn get_operator(&self) -> &u8 {
        &self.operator
    }
}

/// Emitted for code like (only in $VERBOSE mode)
/// ```text
/// 1 *2
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct AmbiguousOperator {
        /// Operator that is ambiguous
    pub operator: StringPtr,
        /// Interpretation of this operator
    pub interpreted_as: StringPtr,
}

impl AmbiguousOperator {
    /// Returns `operator` field
    pub fn get_operator(&self) -> &StringPtr {
        &self.operator
    }
    /// Returns `interpreted_as` field
    pub fn get_interpreted_as(&self) -> &StringPtr {
        &self.interpreted_as
    }
}

/// Emitted for code like
/// ```text
/// "\M- "
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct InvalidCharacterSyntax {
        /// Valid syntax sugestions
    pub suggestion: StringPtr,
}

impl InvalidCharacterSyntax {
    /// Returns `suggestion` field
    pub fn get_suggestion(&self) -> &StringPtr {
        &self.suggestion
    }
}

/// Emitted for code like
/// ```text
/// 09
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct InvalidOctalDigit {
}

impl InvalidOctalDigit {
}

/// Emitted for code like
/// ```text
/// 0_a
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct TrailingCharInNumber {
        /// Invalid trailing char
    pub c: u8,
}

impl TrailingCharInNumber {
    /// Returns `c` field
    pub fn get_c(&self) -> &u8 {
        &self.c
    }
}

/// Emitted for code like
/// ```text
/// =begin
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct EmbeddedDocumentMeetsEof {
}

impl EmbeddedDocumentMeetsEof {
}

/// Emitted for code like
/// ```text
/// eval("\x01foo")
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct InvalidChar {
        /// char
    pub c: u8,
}

impl InvalidChar {
    /// Returns `c` field
    pub fn get_c(&self) -> &u8 {
        &self.c
    }
}

/// It is unknown how to trigger this error.
/// Code that triggers it in MRI can be dead.
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct IncompleteCharacterSyntax {
}

impl IncompleteCharacterSyntax {
}

/// Emitted for code like
/// ```text
/// $
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct GvarWithoutId {
}

impl GvarWithoutId {
}

/// Emitted for code like
/// ```text
/// $@
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct InvalidGvarName {
        /// char after `$`
    pub c: u8,
}

impl InvalidGvarName {
    /// Returns `c` field
    pub fn get_c(&self) -> &u8 {
        &self.c
    }
}

/// Emitted for code like
/// ```text
/// @
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct IvarWithoutId {
}

impl IvarWithoutId {
}

/// Emitted for code like
/// ```text
/// @1
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct InvalidIvarName {
        /// char after `@`
    pub c: u8,
}

impl InvalidIvarName {
    /// Returns `c` field
    pub fn get_c(&self) -> &u8 {
        &self.c
    }
}

/// Emitted for code like
/// ```text
/// @@
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct CvarWithoutId {
}

impl CvarWithoutId {
}

/// Emitted for code like
/// ```text
/// @@1
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct InvalidCvarName {
        /// char after `@@`
    pub c: u8,
}

impl InvalidCvarName {
    /// Returns `c` field
    pub fn get_c(&self) -> &u8 {
        &self.c
    }
}

/// Emitted for code like
/// ```text
/// /re/foo
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct UnknownRegexOptions {
        /// Concatenated unknown options
    pub options: StringPtr,
}

impl UnknownRegexOptions {
    /// Returns `options` field
    pub fn get_options(&self) -> &StringPtr {
        &self.options
    }
}

/// Emitted for code like
/// ```text
/// "\u{1234"
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct UnterminatedUnicodeEscape {
}

impl UnterminatedUnicodeEscape {
}

/// Emitted for code like
/// ```text
/// # encoding: foo
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct EncodingError {
        /// Error from decoder
    pub error: StringPtr,
}

impl EncodingError {
    /// Returns `error` field
    pub fn get_error(&self) -> &StringPtr {
        &self.error
    }
}

/// Emitter for code like
/// ```text
/// eval("\xFF = 42")
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct InvalidMultibyteChar {
}

impl InvalidMultibyteChar {
}

/// Emitted for code like
/// ```text
/// a ?AA : 2
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct AmbiguousTernaryOperator {
        /// Source of the condition expression
    pub condition: StringPtr,
}

impl AmbiguousTernaryOperator {
    /// Returns `condition` field
    pub fn get_condition(&self) -> &StringPtr {
        &self.condition
    }
}

/// Emitted for code like
/// ```text
/// m /foo/
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct AmbiguousRegexp {
}

impl AmbiguousRegexp {
}

/// Emitted for code like
/// ```text
/// begin; else; end
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct ElseWithoutRescue {
}

impl ElseWithoutRescue {
}

/// Emitted for code like
/// ```text
/// def f; BEGIN{}; end
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct BeginNotAtTopLevel {
}

impl BeginNotAtTopLevel {
}

/// Emitted for code like
/// ```text
/// alias $a $1
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct AliasNthRef {
}

impl AliasNthRef {
}

/// Emitted for code like
/// ```text
/// *a&.x = 0
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct CsendInsideMasgn {
}

impl CsendInsideMasgn {
}

/// Emitted for code like
/// ```text
/// module foo; end
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct ClassOrModuleNameMustBeConstant {
}

impl ClassOrModuleNameMustBeConstant {
}

/// Emitted for code like
/// ```text
/// def foo=() = 42
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct EndlessSetterDefinition {
}

impl EndlessSetterDefinition {
}

/// Emitted for any code that produces invalid sequence of tokens
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct UnexpectedToken {
        /// Name of the token
    pub token_name: StringPtr,
}

impl UnexpectedToken {
    /// Returns `token_name` field
    pub fn get_token_name(&self) -> &StringPtr {
        &self.token_name
    }
}

/// Emitted for code like
/// ```text
/// def a; class Foo; end; end
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct ClassDefinitionInMethodBody {
}

impl ClassDefinitionInMethodBody {
}

/// Emitted for code like
/// ```text
/// def a; module Foo; end; end
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct ModuleDefinitionInMethodBody {
}

impl ModuleDefinitionInMethodBody {
}

/// Emitted for code like
/// ```text
/// class A; return; end
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct InvalidReturnInClassOrModuleBody {
}

impl InvalidReturnInClassOrModuleBody {
}

/// Emitted for code like
/// ```text
/// def foo(Abc); end
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct ConstArgument {
}

impl ConstArgument {
}

/// Emitted for code like
/// ```text
/// def foo(@abc); end
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct IvarArgument {
}

impl IvarArgument {
}

/// Emitted for code like
/// ```text
/// def foo($abc); end
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct GvarArgument {
}

impl GvarArgument {
}

/// Emitted for code like
/// ```text
/// def foo(@@abc); end
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct CvarArgument {
}

impl CvarArgument {
}

/// Emitted for code like
/// ```text
/// case 0; in ^a; true; end
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct NoSuchLocalVariable {
        /// Variable name
    pub var_name: StringPtr,
}

impl NoSuchLocalVariable {
    /// Returns `var_name` field
    pub fn get_var_name(&self) -> &StringPtr {
        &self.var_name
    }
}

/// Emitted for code like
/// ```text
/// m { |a| _1 }
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct OrdinaryParamDefined {
}

impl OrdinaryParamDefined {
}

/// Emitted for code like
/// ```text
/// foo { _1; bar { _2 }; }
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct NumparamUsed {
}

impl NumparamUsed {
}

/// Emitted for code like (only in $VERBOSE mode)
/// ```text
/// if
/// 42
/// end
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct TokAtEolWithoutExpression {
        /// Name of the token
    pub token_name: StringPtr,
}

impl TokAtEolWithoutExpression {
    /// Returns `token_name` field
    pub fn get_token_name(&self) -> &StringPtr {
        &self.token_name
    }
}

/// Emitted for code like
/// ```text
/// def m; END {}; end
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct EndInMethod {
}

impl EndInMethod {
}

/// Emitted for code like (only in $VERBOSE mode)
/// ```text
/// a < b < c
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct ComparisonAfterComparison {
        /// Source of the first comparison
    pub comparison: StringPtr,
}

impl ComparisonAfterComparison {
    /// Returns `comparison` field
    pub fn get_comparison(&self) -> &StringPtr {
        &self.comparison
    }
}

/// Emitted for code like
/// ```text
/// def m(foo = foo) end
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct CircularArgumentReference {
        /// Name of the argument
    pub arg_name: StringPtr,
}

impl CircularArgumentReference {
    /// Returns `arg_name` field
    pub fn get_arg_name(&self) -> &StringPtr {
        &self.arg_name
    }
}

/// Emitted for code like
/// ```text
/// def m; FOO = 1; end
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct DynamicConstantAssignment {
}

impl DynamicConstantAssignment {
}

/// Emitted for code like
/// ```text
/// self = foo
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct CantAssignToSelf {
}

impl CantAssignToSelf {
}

/// Emitted for code like
/// ```text
/// nil = foo
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct CantAssignToNil {
}

impl CantAssignToNil {
}

/// Emitted for code like
/// ```text
/// true = foo
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct CantAssignToTrue {
}

impl CantAssignToTrue {
}

/// Emitted for code like
/// ```text
/// false = foo
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct CantAssignToFalse {
}

impl CantAssignToFalse {
}

/// Emitted for code like
/// ```text
/// __FILE__ = foo
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct CantAssignToFile {
}

impl CantAssignToFile {
}

/// Emitted for code like
/// ```text
/// __LINE__ = foo
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct CantAssignToLine {
}

impl CantAssignToLine {
}

/// Emitted for code like
/// ```text
/// __ENCODING__ = foo
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct CantAssignToEncoding {
}

impl CantAssignToEncoding {
}

/// Emitted for code like
/// ```text
/// proc {_1; _1 = nil}
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct CantAssignToNumparam {
        /// Source of the numbered parameter
    pub numparam: StringPtr,
}

impl CantAssignToNumparam {
    /// Returns `numparam` field
    pub fn get_numparam(&self) -> &StringPtr {
        &self.numparam
    }
}

/// Emitted for code like
/// ```text
/// $1 = foo
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct CantSetVariable {
        /// Source of the read-only variable that is assigned
    pub var_name: StringPtr,
}

impl CantSetVariable {
    /// Returns `var_name` field
    pub fn get_var_name(&self) -> &StringPtr {
        &self.var_name
    }
}

/// Emitted for code like
/// ```text
/// yield(&foo)
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct BlockGivenToYield {
}

impl BlockGivenToYield {
}

/// Emitted for code like
/// ```text
/// fun(&bar) do end
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct BlockAndBlockArgGiven {
}

impl BlockAndBlockArgGiven {
}

/// Emitted for code like
/// ```text
/// case a; in "#{a}": 1; end
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct SymbolLiteralWithInterpolation {
}

impl SymbolLiteralWithInterpolation {
}

/// Emitted for code like
/// ```text
/// _1 = 1
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct ReservedForNumparam {
        /// Numbered parameter that is treated as a local variable
    pub numparam: StringPtr,
}

impl ReservedForNumparam {
    /// Returns `numparam` field
    pub fn get_numparam(&self) -> &StringPtr {
        &self.numparam
    }
}

/// Emitted for code like
/// ```text
/// case a; in a?:; end
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct KeyMustBeValidAsLocalVariable {
}

impl KeyMustBeValidAsLocalVariable {
}

/// Emitted for code like
/// ```text
/// case 0; in a, a; end
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct DuplicateVariableName {
}

impl DuplicateVariableName {
}

/// Emitted for code like
/// ```text
/// case 0; in a: 1, a: 2; end
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct DuplicateKeyName {
}

impl DuplicateKeyName {
}

/// Emitted for code like
/// ```text
/// def (1).foo; end
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct SingletonLiteral {
}

impl SingletonLiteral {
}

/// Emitted for code like (only in $VERBOSE mode)
/// ```text
/// $100
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct NthRefIsTooBig {
        /// Source of the nth_ref that is techincally a regular global variable
    pub nth_ref: StringPtr,
}

impl NthRefIsTooBig {
    /// Returns `nth_ref` field
    pub fn get_nth_ref(&self) -> &StringPtr {
        &self.nth_ref
    }
}

/// Emitted for code like
/// ```text
/// def foo(aa, aa); end
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct DuplicatedArgumentName {
}

impl DuplicatedArgumentName {
}

/// Emitted for code like
/// ```text
/// /[/
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct RegexError {
        /// Error from Onigurama engine
    pub error: StringPtr,
}

impl RegexError {
    /// Returns `error` field
    pub fn get_error(&self) -> &StringPtr {
        &self.error
    }
}

/// Emitted for code like
/// ```text
/// %I"x .\xc3."
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct InvalidSymbol {
        /// Source of the symbol
    pub symbol: StringPtr,
}

impl InvalidSymbol {
    /// Returns `symbol` field
    pub fn get_symbol(&self) -> &StringPtr {
        &self.symbol
    }
}

/// Emitted for code like
/// ```text
/// a = return
/// ```
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct VoidValueExpression {
}

impl VoidValueExpression {
}


impl crate::DiagnosticMessage {
    /// Casts `self` to `Option<&FractionAfterNumeric>`, return `None` if variant doesn't match
    pub fn as_fraction_after_numeric(&self) -> Option<&FractionAfterNumeric> {
        match self {
            Self::FractionAfterNumeric(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&NoDigitsAfterDot>`, return `None` if variant doesn't match
    pub fn as_no_digits_after_dot(&self) -> Option<&NoDigitsAfterDot> {
        match self {
            Self::NoDigitsAfterDot(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&UnknownTypeOfPercentString>`, return `None` if variant doesn't match
    pub fn as_unknown_type_of_percent_string(&self) -> Option<&UnknownTypeOfPercentString> {
        match self {
            Self::UnknownTypeOfPercentString(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&NumericLiteralWithoutDigits>`, return `None` if variant doesn't match
    pub fn as_numeric_literal_without_digits(&self) -> Option<&NumericLiteralWithoutDigits> {
        match self {
            Self::NumericLiteralWithoutDigits(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&UnterminatedList>`, return `None` if variant doesn't match
    pub fn as_unterminated_list(&self) -> Option<&UnterminatedList> {
        match self {
            Self::UnterminatedList(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&UnterminatedRegexp>`, return `None` if variant doesn't match
    pub fn as_unterminated_regexp(&self) -> Option<&UnterminatedRegexp> {
        match self {
            Self::UnterminatedRegexp(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&UnterminatedString>`, return `None` if variant doesn't match
    pub fn as_unterminated_string(&self) -> Option<&UnterminatedString> {
        match self {
            Self::UnterminatedString(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&UnterminatedQuotedString>`, return `None` if variant doesn't match
    pub fn as_unterminated_quoted_string(&self) -> Option<&UnterminatedQuotedString> {
        match self {
            Self::UnterminatedQuotedString(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&InvalidUnicodeEscape>`, return `None` if variant doesn't match
    pub fn as_invalid_unicode_escape(&self) -> Option<&InvalidUnicodeEscape> {
        match self {
            Self::InvalidUnicodeEscape(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&TooLargeUnicodeCodepoint>`, return `None` if variant doesn't match
    pub fn as_too_large_unicode_codepoint(&self) -> Option<&TooLargeUnicodeCodepoint> {
        match self {
            Self::TooLargeUnicodeCodepoint(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&InvalidUnicodeCodepoint>`, return `None` if variant doesn't match
    pub fn as_invalid_unicode_codepoint(&self) -> Option<&InvalidUnicodeCodepoint> {
        match self {
            Self::InvalidUnicodeCodepoint(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&MultipleCodepointAtSingleChar>`, return `None` if variant doesn't match
    pub fn as_multiple_codepoint_at_single_char(&self) -> Option<&MultipleCodepointAtSingleChar> {
        match self {
            Self::MultipleCodepointAtSingleChar(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&InvalidEscapeCharacter>`, return `None` if variant doesn't match
    pub fn as_invalid_escape_character(&self) -> Option<&InvalidEscapeCharacter> {
        match self {
            Self::InvalidEscapeCharacter(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&InvalidHexEscape>`, return `None` if variant doesn't match
    pub fn as_invalid_hex_escape(&self) -> Option<&InvalidHexEscape> {
        match self {
            Self::InvalidHexEscape(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&UnterminatedHeredoc>`, return `None` if variant doesn't match
    pub fn as_unterminated_heredoc(&self) -> Option<&UnterminatedHeredoc> {
        match self {
            Self::UnterminatedHeredoc(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&UnterminatedHeredocId>`, return `None` if variant doesn't match
    pub fn as_unterminated_heredoc_id(&self) -> Option<&UnterminatedHeredocId> {
        match self {
            Self::UnterminatedHeredocId(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&SlashRAtMiddleOfLine>`, return `None` if variant doesn't match
    pub fn as_slash_r_at_middle_of_line(&self) -> Option<&SlashRAtMiddleOfLine> {
        match self {
            Self::SlashRAtMiddleOfLine(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&DStarInterpretedAsArgPrefix>`, return `None` if variant doesn't match
    pub fn as_d_star_interpreted_as_arg_prefix(&self) -> Option<&DStarInterpretedAsArgPrefix> {
        match self {
            Self::DStarInterpretedAsArgPrefix(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&StarInterpretedAsArgPrefix>`, return `None` if variant doesn't match
    pub fn as_star_interpreted_as_arg_prefix(&self) -> Option<&StarInterpretedAsArgPrefix> {
        match self {
            Self::StarInterpretedAsArgPrefix(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&AmpersandInterpretedAsArgPrefix>`, return `None` if variant doesn't match
    pub fn as_ampersand_interpreted_as_arg_prefix(&self) -> Option<&AmpersandInterpretedAsArgPrefix> {
        match self {
            Self::AmpersandInterpretedAsArgPrefix(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&TripleDotAtEol>`, return `None` if variant doesn't match
    pub fn as_triple_dot_at_eol(&self) -> Option<&TripleDotAtEol> {
        match self {
            Self::TripleDotAtEol(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&ParenthesesIterpretedAsArglist>`, return `None` if variant doesn't match
    pub fn as_parentheses_iterpreted_as_arglist(&self) -> Option<&ParenthesesIterpretedAsArglist> {
        match self {
            Self::ParenthesesIterpretedAsArglist(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&AmbiguousFirstArgument>`, return `None` if variant doesn't match
    pub fn as_ambiguous_first_argument(&self) -> Option<&AmbiguousFirstArgument> {
        match self {
            Self::AmbiguousFirstArgument(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&AmbiguousOperator>`, return `None` if variant doesn't match
    pub fn as_ambiguous_operator(&self) -> Option<&AmbiguousOperator> {
        match self {
            Self::AmbiguousOperator(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&InvalidCharacterSyntax>`, return `None` if variant doesn't match
    pub fn as_invalid_character_syntax(&self) -> Option<&InvalidCharacterSyntax> {
        match self {
            Self::InvalidCharacterSyntax(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&InvalidOctalDigit>`, return `None` if variant doesn't match
    pub fn as_invalid_octal_digit(&self) -> Option<&InvalidOctalDigit> {
        match self {
            Self::InvalidOctalDigit(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&TrailingCharInNumber>`, return `None` if variant doesn't match
    pub fn as_trailing_char_in_number(&self) -> Option<&TrailingCharInNumber> {
        match self {
            Self::TrailingCharInNumber(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&EmbeddedDocumentMeetsEof>`, return `None` if variant doesn't match
    pub fn as_embedded_document_meets_eof(&self) -> Option<&EmbeddedDocumentMeetsEof> {
        match self {
            Self::EmbeddedDocumentMeetsEof(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&InvalidChar>`, return `None` if variant doesn't match
    pub fn as_invalid_char(&self) -> Option<&InvalidChar> {
        match self {
            Self::InvalidChar(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&IncompleteCharacterSyntax>`, return `None` if variant doesn't match
    pub fn as_incomplete_character_syntax(&self) -> Option<&IncompleteCharacterSyntax> {
        match self {
            Self::IncompleteCharacterSyntax(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&GvarWithoutId>`, return `None` if variant doesn't match
    pub fn as_gvar_without_id(&self) -> Option<&GvarWithoutId> {
        match self {
            Self::GvarWithoutId(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&InvalidGvarName>`, return `None` if variant doesn't match
    pub fn as_invalid_gvar_name(&self) -> Option<&InvalidGvarName> {
        match self {
            Self::InvalidGvarName(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&IvarWithoutId>`, return `None` if variant doesn't match
    pub fn as_ivar_without_id(&self) -> Option<&IvarWithoutId> {
        match self {
            Self::IvarWithoutId(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&InvalidIvarName>`, return `None` if variant doesn't match
    pub fn as_invalid_ivar_name(&self) -> Option<&InvalidIvarName> {
        match self {
            Self::InvalidIvarName(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&CvarWithoutId>`, return `None` if variant doesn't match
    pub fn as_cvar_without_id(&self) -> Option<&CvarWithoutId> {
        match self {
            Self::CvarWithoutId(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&InvalidCvarName>`, return `None` if variant doesn't match
    pub fn as_invalid_cvar_name(&self) -> Option<&InvalidCvarName> {
        match self {
            Self::InvalidCvarName(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&UnknownRegexOptions>`, return `None` if variant doesn't match
    pub fn as_unknown_regex_options(&self) -> Option<&UnknownRegexOptions> {
        match self {
            Self::UnknownRegexOptions(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&UnterminatedUnicodeEscape>`, return `None` if variant doesn't match
    pub fn as_unterminated_unicode_escape(&self) -> Option<&UnterminatedUnicodeEscape> {
        match self {
            Self::UnterminatedUnicodeEscape(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&EncodingError>`, return `None` if variant doesn't match
    pub fn as_encoding_error(&self) -> Option<&EncodingError> {
        match self {
            Self::EncodingError(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&InvalidMultibyteChar>`, return `None` if variant doesn't match
    pub fn as_invalid_multibyte_char(&self) -> Option<&InvalidMultibyteChar> {
        match self {
            Self::InvalidMultibyteChar(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&AmbiguousTernaryOperator>`, return `None` if variant doesn't match
    pub fn as_ambiguous_ternary_operator(&self) -> Option<&AmbiguousTernaryOperator> {
        match self {
            Self::AmbiguousTernaryOperator(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&AmbiguousRegexp>`, return `None` if variant doesn't match
    pub fn as_ambiguous_regexp(&self) -> Option<&AmbiguousRegexp> {
        match self {
            Self::AmbiguousRegexp(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&ElseWithoutRescue>`, return `None` if variant doesn't match
    pub fn as_else_without_rescue(&self) -> Option<&ElseWithoutRescue> {
        match self {
            Self::ElseWithoutRescue(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&BeginNotAtTopLevel>`, return `None` if variant doesn't match
    pub fn as_begin_not_at_top_level(&self) -> Option<&BeginNotAtTopLevel> {
        match self {
            Self::BeginNotAtTopLevel(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&AliasNthRef>`, return `None` if variant doesn't match
    pub fn as_alias_nth_ref(&self) -> Option<&AliasNthRef> {
        match self {
            Self::AliasNthRef(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&CsendInsideMasgn>`, return `None` if variant doesn't match
    pub fn as_csend_inside_masgn(&self) -> Option<&CsendInsideMasgn> {
        match self {
            Self::CsendInsideMasgn(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&ClassOrModuleNameMustBeConstant>`, return `None` if variant doesn't match
    pub fn as_class_or_module_name_must_be_constant(&self) -> Option<&ClassOrModuleNameMustBeConstant> {
        match self {
            Self::ClassOrModuleNameMustBeConstant(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&EndlessSetterDefinition>`, return `None` if variant doesn't match
    pub fn as_endless_setter_definition(&self) -> Option<&EndlessSetterDefinition> {
        match self {
            Self::EndlessSetterDefinition(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&UnexpectedToken>`, return `None` if variant doesn't match
    pub fn as_unexpected_token(&self) -> Option<&UnexpectedToken> {
        match self {
            Self::UnexpectedToken(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&ClassDefinitionInMethodBody>`, return `None` if variant doesn't match
    pub fn as_class_definition_in_method_body(&self) -> Option<&ClassDefinitionInMethodBody> {
        match self {
            Self::ClassDefinitionInMethodBody(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&ModuleDefinitionInMethodBody>`, return `None` if variant doesn't match
    pub fn as_module_definition_in_method_body(&self) -> Option<&ModuleDefinitionInMethodBody> {
        match self {
            Self::ModuleDefinitionInMethodBody(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&InvalidReturnInClassOrModuleBody>`, return `None` if variant doesn't match
    pub fn as_invalid_return_in_class_or_module_body(&self) -> Option<&InvalidReturnInClassOrModuleBody> {
        match self {
            Self::InvalidReturnInClassOrModuleBody(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&ConstArgument>`, return `None` if variant doesn't match
    pub fn as_const_argument(&self) -> Option<&ConstArgument> {
        match self {
            Self::ConstArgument(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&IvarArgument>`, return `None` if variant doesn't match
    pub fn as_ivar_argument(&self) -> Option<&IvarArgument> {
        match self {
            Self::IvarArgument(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&GvarArgument>`, return `None` if variant doesn't match
    pub fn as_gvar_argument(&self) -> Option<&GvarArgument> {
        match self {
            Self::GvarArgument(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&CvarArgument>`, return `None` if variant doesn't match
    pub fn as_cvar_argument(&self) -> Option<&CvarArgument> {
        match self {
            Self::CvarArgument(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&NoSuchLocalVariable>`, return `None` if variant doesn't match
    pub fn as_no_such_local_variable(&self) -> Option<&NoSuchLocalVariable> {
        match self {
            Self::NoSuchLocalVariable(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&OrdinaryParamDefined>`, return `None` if variant doesn't match
    pub fn as_ordinary_param_defined(&self) -> Option<&OrdinaryParamDefined> {
        match self {
            Self::OrdinaryParamDefined(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&NumparamUsed>`, return `None` if variant doesn't match
    pub fn as_numparam_used(&self) -> Option<&NumparamUsed> {
        match self {
            Self::NumparamUsed(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&TokAtEolWithoutExpression>`, return `None` if variant doesn't match
    pub fn as_tok_at_eol_without_expression(&self) -> Option<&TokAtEolWithoutExpression> {
        match self {
            Self::TokAtEolWithoutExpression(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&EndInMethod>`, return `None` if variant doesn't match
    pub fn as_end_in_method(&self) -> Option<&EndInMethod> {
        match self {
            Self::EndInMethod(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&ComparisonAfterComparison>`, return `None` if variant doesn't match
    pub fn as_comparison_after_comparison(&self) -> Option<&ComparisonAfterComparison> {
        match self {
            Self::ComparisonAfterComparison(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&CircularArgumentReference>`, return `None` if variant doesn't match
    pub fn as_circular_argument_reference(&self) -> Option<&CircularArgumentReference> {
        match self {
            Self::CircularArgumentReference(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&DynamicConstantAssignment>`, return `None` if variant doesn't match
    pub fn as_dynamic_constant_assignment(&self) -> Option<&DynamicConstantAssignment> {
        match self {
            Self::DynamicConstantAssignment(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&CantAssignToSelf>`, return `None` if variant doesn't match
    pub fn as_cant_assign_to_self(&self) -> Option<&CantAssignToSelf> {
        match self {
            Self::CantAssignToSelf(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&CantAssignToNil>`, return `None` if variant doesn't match
    pub fn as_cant_assign_to_nil(&self) -> Option<&CantAssignToNil> {
        match self {
            Self::CantAssignToNil(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&CantAssignToTrue>`, return `None` if variant doesn't match
    pub fn as_cant_assign_to_true(&self) -> Option<&CantAssignToTrue> {
        match self {
            Self::CantAssignToTrue(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&CantAssignToFalse>`, return `None` if variant doesn't match
    pub fn as_cant_assign_to_false(&self) -> Option<&CantAssignToFalse> {
        match self {
            Self::CantAssignToFalse(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&CantAssignToFile>`, return `None` if variant doesn't match
    pub fn as_cant_assign_to_file(&self) -> Option<&CantAssignToFile> {
        match self {
            Self::CantAssignToFile(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&CantAssignToLine>`, return `None` if variant doesn't match
    pub fn as_cant_assign_to_line(&self) -> Option<&CantAssignToLine> {
        match self {
            Self::CantAssignToLine(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&CantAssignToEncoding>`, return `None` if variant doesn't match
    pub fn as_cant_assign_to_encoding(&self) -> Option<&CantAssignToEncoding> {
        match self {
            Self::CantAssignToEncoding(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&CantAssignToNumparam>`, return `None` if variant doesn't match
    pub fn as_cant_assign_to_numparam(&self) -> Option<&CantAssignToNumparam> {
        match self {
            Self::CantAssignToNumparam(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&CantSetVariable>`, return `None` if variant doesn't match
    pub fn as_cant_set_variable(&self) -> Option<&CantSetVariable> {
        match self {
            Self::CantSetVariable(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&BlockGivenToYield>`, return `None` if variant doesn't match
    pub fn as_block_given_to_yield(&self) -> Option<&BlockGivenToYield> {
        match self {
            Self::BlockGivenToYield(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&BlockAndBlockArgGiven>`, return `None` if variant doesn't match
    pub fn as_block_and_block_arg_given(&self) -> Option<&BlockAndBlockArgGiven> {
        match self {
            Self::BlockAndBlockArgGiven(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&SymbolLiteralWithInterpolation>`, return `None` if variant doesn't match
    pub fn as_symbol_literal_with_interpolation(&self) -> Option<&SymbolLiteralWithInterpolation> {
        match self {
            Self::SymbolLiteralWithInterpolation(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&ReservedForNumparam>`, return `None` if variant doesn't match
    pub fn as_reserved_for_numparam(&self) -> Option<&ReservedForNumparam> {
        match self {
            Self::ReservedForNumparam(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&KeyMustBeValidAsLocalVariable>`, return `None` if variant doesn't match
    pub fn as_key_must_be_valid_as_local_variable(&self) -> Option<&KeyMustBeValidAsLocalVariable> {
        match self {
            Self::KeyMustBeValidAsLocalVariable(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&DuplicateVariableName>`, return `None` if variant doesn't match
    pub fn as_duplicate_variable_name(&self) -> Option<&DuplicateVariableName> {
        match self {
            Self::DuplicateVariableName(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&DuplicateKeyName>`, return `None` if variant doesn't match
    pub fn as_duplicate_key_name(&self) -> Option<&DuplicateKeyName> {
        match self {
            Self::DuplicateKeyName(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&SingletonLiteral>`, return `None` if variant doesn't match
    pub fn as_singleton_literal(&self) -> Option<&SingletonLiteral> {
        match self {
            Self::SingletonLiteral(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&NthRefIsTooBig>`, return `None` if variant doesn't match
    pub fn as_nth_ref_is_too_big(&self) -> Option<&NthRefIsTooBig> {
        match self {
            Self::NthRefIsTooBig(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&DuplicatedArgumentName>`, return `None` if variant doesn't match
    pub fn as_duplicated_argument_name(&self) -> Option<&DuplicatedArgumentName> {
        match self {
            Self::DuplicatedArgumentName(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&RegexError>`, return `None` if variant doesn't match
    pub fn as_regex_error(&self) -> Option<&RegexError> {
        match self {
            Self::RegexError(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&InvalidSymbol>`, return `None` if variant doesn't match
    pub fn as_invalid_symbol(&self) -> Option<&InvalidSymbol> {
        match self {
            Self::InvalidSymbol(variant) => Some(variant),
            _ => None
        }
    }
    /// Casts `self` to `Option<&VoidValueExpression>`, return `None` if variant doesn't match
    pub fn as_void_value_expression(&self) -> Option<&VoidValueExpression> {
        match self {
            Self::VoidValueExpression(variant) => Some(variant),
            _ => None
        }
    }
}