@@ -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' ,
@@ -2477,6 +2528,7 @@ module.exports = grammar({
2477
2528
'out' ,
2478
2529
choice (
2479
2530
$ . identifier ,
2531
+ alias ( $ . identifier_method_call , $ . identifier ) ,
2480
2532
$ . instance_var ,
2481
2533
$ . underscore ,
2482
2534
$ . macro_var ,
@@ -2488,6 +2540,7 @@ module.exports = grammar({
2488
2540
const lhs = field ( 'lhs' , choice (
2489
2541
$ . underscore ,
2490
2542
$ . identifier ,
2543
+ alias ( $ . identifier_method_call , $ . identifier ) ,
2491
2544
$ . instance_var ,
2492
2545
$ . class_var ,
2493
2546
$ . macro_var ,
@@ -2551,6 +2604,7 @@ module.exports = grammar({
2551
2604
2552
2605
const lhs = field ( 'lhs' , choice (
2553
2606
$ . identifier ,
2607
+ alias ( $ . identifier_method_call , $ . identifier ) ,
2554
2608
$ . instance_var ,
2555
2609
$ . class_var ,
2556
2610
$ . macro_var ,
@@ -2569,6 +2623,7 @@ module.exports = grammar({
2569
2623
lhs_splat : $ => seq ( '*' , choice (
2570
2624
$ . underscore ,
2571
2625
$ . identifier ,
2626
+ alias ( $ . identifier_method_call , $ . identifier ) ,
2572
2627
$ . instance_var ,
2573
2628
$ . class_var ,
2574
2629
$ . macro_var ,
@@ -2582,6 +2637,7 @@ module.exports = grammar({
2582
2637
const lhs_basic = choice (
2583
2638
$ . underscore ,
2584
2639
$ . identifier ,
2640
+ alias ( $ . identifier_method_call , $ . identifier ) ,
2585
2641
$ . instance_var ,
2586
2642
$ . class_var ,
2587
2643
$ . macro_var ,
@@ -2607,7 +2663,11 @@ module.exports = grammar({
2607
2663
2608
2664
uninitialized_assign : $ => {
2609
2665
return seq (
2610
- field ( 'lhs' , choice ( $ . identifier , $ . instance_var , $ . class_var , $ . global_var , $ . macro_var ) ) ,
2666
+ field ( 'lhs' , choice (
2667
+ $ . identifier , alias ( $ . identifier_method_call , $ . identifier ) ,
2668
+ $ . instance_var , $ . class_var ,
2669
+ $ . global_var , $ . macro_var ,
2670
+ ) ) ,
2611
2671
'=' ,
2612
2672
field ( 'rhs' , $ . uninitialized_var ) ,
2613
2673
)
@@ -2617,7 +2677,9 @@ module.exports = grammar({
2617
2677
2618
2678
type_declaration : $ => {
2619
2679
const variable = field ( 'var' , choice (
2620
- $ . identifier , $ . instance_var , $ . class_var , $ . macro_var , $ . macro_expression ,
2680
+ $ . identifier , alias ( $ . identifier_method_call , $ . identifier ) ,
2681
+ $ . instance_var , $ . class_var ,
2682
+ $ . macro_var , $ . macro_expression ,
2621
2683
) )
2622
2684
const type = field ( 'type' , $ . _bare_type )
2623
2685
const value = field ( 'value' , $ . _expression )
@@ -2642,11 +2704,15 @@ module.exports = grammar({
2642
2704
field ( 'type' , $ . _bare_type ) ,
2643
2705
) ,
2644
2706
2645
- block_body_param : $ => field ( 'name' , $ . identifier ) ,
2707
+ block_body_param : $ => field ( 'name' , choice (
2708
+ $ . identifier , alias ( $ . identifier_method_call , $ . identifier ) ,
2709
+ ) ) ,
2646
2710
2647
2711
block_body_splat_param : $ => seq (
2648
2712
'*' ,
2649
- field ( 'name' , $ . identifier ) ,
2713
+ field ( 'name' , choice (
2714
+ $ . identifier , alias ( $ . identifier_method_call , $ . identifier ) ,
2715
+ ) ) ,
2650
2716
) ,
2651
2717
2652
2718
_block_body_nested_param : $ => {
0 commit comments