@@ -285,6 +285,18 @@ module.exports = grammar({
285
285
$ . pseudo_call_argument_list ,
286
286
$ . _parenthesized_type ,
287
287
] ,
288
+
289
+ // Ternary has precedence over type declaration
290
+ [
291
+ $ . call ,
292
+ $ . type_declaration ,
293
+ ] ,
294
+
295
+ // Want to prefer identifiers ending with `?`
296
+ [
297
+ $ . identifier_method_call ,
298
+ $ . identifier ,
299
+ ] ,
288
300
] ,
289
301
290
302
conflicts : $ => [
@@ -981,6 +993,7 @@ module.exports = grammar({
981
993
method_proc : $ => {
982
994
const receiver = field ( 'receiver' , choice (
983
995
$ . identifier ,
996
+ alias ( $ . identifier_method_call , $ . identifier ) ,
984
997
$ . instance_var ,
985
998
$ . class_var ,
986
999
$ . self ,
@@ -1180,7 +1193,10 @@ module.exports = grammar({
1180
1193
} ,
1181
1194
1182
1195
fun_param : $ => {
1183
- const name = field ( 'name' , choice ( $ . identifier , $ . constant ) )
1196
+ const name = field ( 'name' , choice (
1197
+ $ . identifier , $ . constant ,
1198
+ alias ( $ . identifier_method_call , $ . identifier ) ,
1199
+ ) )
1184
1200
const type = field ( 'type' , seq ( / [ \t ] : \s / , $ . _bare_type ) )
1185
1201
1186
1202
return seq (
@@ -1227,7 +1243,19 @@ module.exports = grammar({
1227
1243
) ,
1228
1244
1229
1245
c_struct_fields : $ => {
1230
- const names = seq ( $ . identifier , repeat ( seq ( ',' , $ . identifier ) ) )
1246
+ const names = seq (
1247
+ choice (
1248
+ $ . identifier ,
1249
+ alias ( $ . identifier_method_call , $ . identifier ) ,
1250
+ ) ,
1251
+ repeat ( seq (
1252
+ ',' ,
1253
+ choice (
1254
+ $ . identifier ,
1255
+ alias ( $ . identifier_method_call , $ . identifier ) ,
1256
+ ) ,
1257
+ ) ) ,
1258
+ )
1231
1259
1232
1260
return seq (
1233
1261
names ,
@@ -1266,7 +1294,19 @@ module.exports = grammar({
1266
1294
) ,
1267
1295
1268
1296
union_fields : $ => {
1269
- const names = seq ( $ . identifier , repeat ( seq ( ',' , $ . identifier ) ) )
1297
+ const names = seq (
1298
+ choice (
1299
+ $ . identifier ,
1300
+ alias ( $ . identifier_method_call , $ . identifier ) ,
1301
+ ) ,
1302
+ repeat ( seq (
1303
+ ',' ,
1304
+ choice (
1305
+ $ . identifier ,
1306
+ alias ( $ . identifier_method_call , $ . identifier ) ,
1307
+ ) ,
1308
+ ) ) ,
1309
+ )
1270
1310
1271
1311
return seq (
1272
1312
names ,
@@ -1425,7 +1465,9 @@ module.exports = grammar({
1425
1465
param : $ => {
1426
1466
const extern_name = field ( 'extern_name' , $ . identifier )
1427
1467
const name = field ( 'name' , choice (
1428
- $ . identifier , $ . instance_var , $ . class_var , $ . macro_var , $ . macro_expression ,
1468
+ $ . identifier , alias ( $ . identifier_method_call , $ . identifier ) ,
1469
+ $ . instance_var , $ . class_var ,
1470
+ $ . macro_var , $ . macro_expression ,
1429
1471
) )
1430
1472
const type = field ( 'type' , seq ( / [ \t ] : \s / , $ . _bare_type ) )
1431
1473
const default_value = field ( 'default' , seq ( '=' , $ . _expression ) )
@@ -1441,7 +1483,9 @@ module.exports = grammar({
1441
1483
1442
1484
splat_param : $ => {
1443
1485
const name = field ( 'name' , choice (
1444
- $ . identifier , $ . instance_var , $ . class_var , $ . macro_var , $ . macro_expression ,
1486
+ $ . identifier , alias ( $ . identifier_method_call , $ . identifier ) ,
1487
+ $ . instance_var , $ . class_var ,
1488
+ $ . macro_var , $ . macro_expression ,
1445
1489
) )
1446
1490
const type = field ( 'type' , seq ( / [ \t ] : \s / , $ . _bare_type ) )
1447
1491
@@ -1455,7 +1499,9 @@ module.exports = grammar({
1455
1499
1456
1500
double_splat_param : $ => {
1457
1501
const name = field ( 'name' , choice (
1458
- $ . identifier , $ . instance_var , $ . class_var , $ . macro_var , $ . macro_expression ,
1502
+ $ . identifier , alias ( $ . identifier_method_call , $ . identifier ) ,
1503
+ $ . instance_var , $ . class_var ,
1504
+ $ . macro_var , $ . macro_expression ,
1459
1505
) )
1460
1506
const type = field ( 'type' , seq ( / [ \t ] : \s / , $ . _bare_type ) )
1461
1507
@@ -1469,7 +1515,9 @@ module.exports = grammar({
1469
1515
1470
1516
block_param : $ => {
1471
1517
const name = field ( 'name' , choice (
1472
- $ . identifier , $ . instance_var , $ . class_var , $ . macro_var , $ . macro_expression ,
1518
+ $ . identifier , alias ( $ . identifier_method_call , $ . identifier ) ,
1519
+ $ . instance_var , $ . class_var ,
1520
+ $ . macro_var , $ . macro_expression ,
1473
1521
) )
1474
1522
const type = field ( 'type' , seq ( / : \s / , $ . _bare_type ) )
1475
1523
@@ -1930,7 +1978,10 @@ module.exports = grammar({
1930
1978
) ) ,
1931
1979
1932
1980
macro_for : $ => {
1933
- const var_name = field ( 'var' , choice ( $ . underscore , $ . identifier ) )
1981
+ const var_name = field ( 'var' , choice (
1982
+ $ . underscore , $ . identifier ,
1983
+ alias ( $ . identifier_method_call , $ . identifier ) ,
1984
+ ) )
1934
1985
1935
1986
return seq (
1936
1987
'for' ,
@@ -2478,6 +2529,7 @@ module.exports = grammar({
2478
2529
'out' ,
2479
2530
choice (
2480
2531
$ . identifier ,
2532
+ alias ( $ . identifier_method_call , $ . identifier ) ,
2481
2533
$ . instance_var ,
2482
2534
$ . underscore ,
2483
2535
$ . macro_var ,
@@ -2489,6 +2541,7 @@ module.exports = grammar({
2489
2541
const lhs = field ( 'lhs' , choice (
2490
2542
$ . underscore ,
2491
2543
$ . identifier ,
2544
+ alias ( $ . identifier_method_call , $ . identifier ) ,
2492
2545
$ . instance_var ,
2493
2546
$ . class_var ,
2494
2547
$ . macro_var ,
@@ -2552,6 +2605,7 @@ module.exports = grammar({
2552
2605
2553
2606
const lhs = field ( 'lhs' , choice (
2554
2607
$ . identifier ,
2608
+ alias ( $ . identifier_method_call , $ . identifier ) ,
2555
2609
$ . instance_var ,
2556
2610
$ . class_var ,
2557
2611
$ . macro_var ,
@@ -2570,6 +2624,7 @@ module.exports = grammar({
2570
2624
lhs_splat : $ => seq ( '*' , choice (
2571
2625
$ . underscore ,
2572
2626
$ . identifier ,
2627
+ alias ( $ . identifier_method_call , $ . identifier ) ,
2573
2628
$ . instance_var ,
2574
2629
$ . class_var ,
2575
2630
$ . macro_var ,
@@ -2583,6 +2638,7 @@ module.exports = grammar({
2583
2638
const lhs_basic = choice (
2584
2639
$ . underscore ,
2585
2640
$ . identifier ,
2641
+ alias ( $ . identifier_method_call , $ . identifier ) ,
2586
2642
$ . instance_var ,
2587
2643
$ . class_var ,
2588
2644
$ . macro_var ,
@@ -2608,7 +2664,11 @@ module.exports = grammar({
2608
2664
2609
2665
uninitialized_assign : $ => {
2610
2666
return seq (
2611
- field ( 'lhs' , choice ( $ . identifier , $ . instance_var , $ . class_var , $ . global_var , $ . macro_var ) ) ,
2667
+ field ( 'lhs' , choice (
2668
+ $ . identifier , alias ( $ . identifier_method_call , $ . identifier ) ,
2669
+ $ . instance_var , $ . class_var ,
2670
+ $ . global_var , $ . macro_var ,
2671
+ ) ) ,
2612
2672
'=' ,
2613
2673
field ( 'rhs' , $ . uninitialized_var ) ,
2614
2674
)
@@ -2618,7 +2678,9 @@ module.exports = grammar({
2618
2678
2619
2679
type_declaration : $ => {
2620
2680
const variable = field ( 'var' , choice (
2621
- $ . identifier , $ . instance_var , $ . class_var , $ . macro_var , $ . macro_expression ,
2681
+ $ . identifier , alias ( $ . identifier_method_call , $ . identifier ) ,
2682
+ $ . instance_var , $ . class_var ,
2683
+ $ . macro_var , $ . macro_expression ,
2622
2684
) )
2623
2685
const type = field ( 'type' , $ . _bare_type )
2624
2686
const value = field ( 'value' , $ . _expression )
@@ -2643,11 +2705,15 @@ module.exports = grammar({
2643
2705
field ( 'type' , $ . _bare_type ) ,
2644
2706
) ,
2645
2707
2646
- block_body_param : $ => field ( 'name' , $ . identifier ) ,
2708
+ block_body_param : $ => field ( 'name' , choice (
2709
+ $ . identifier , alias ( $ . identifier_method_call , $ . identifier ) ,
2710
+ ) ) ,
2647
2711
2648
2712
block_body_splat_param : $ => seq (
2649
2713
'*' ,
2650
- field ( 'name' , $ . identifier ) ,
2714
+ field ( 'name' , choice (
2715
+ $ . identifier , alias ( $ . identifier_method_call , $ . identifier ) ,
2716
+ ) ) ,
2651
2717
) ,
2652
2718
2653
2719
_block_body_nested_param : $ => {
0 commit comments