@@ -164,7 +164,8 @@ private module Cached {
164
164
THashKeySymbolLiteral ( Ruby:: HashKeySymbol g ) or
165
165
THashLiteral ( Ruby:: Hash g ) or
166
166
THashPattern ( Ruby:: HashPattern g ) or
167
- THashSplatExpr ( Ruby:: HashSplatArgument g ) or
167
+ THashSplatExprReal ( Ruby:: HashSplatArgument g ) or
168
+ THashSplatExprSynth ( Ast:: AstNode parent , int i ) { mkSynthChild ( HashSplatExprKind ( ) , parent , i ) } or
168
169
THashSplatNilParameter ( Ruby:: HashSplatNil g ) { not g .getParent ( ) instanceof Ruby:: HashPattern } or
169
170
THashSplatParameter ( Ruby:: HashSplatParameter g ) {
170
171
not g .getParent ( ) instanceof Ruby:: HashPattern
@@ -232,7 +233,8 @@ private module Cached {
232
233
TNotExprReal ( Ruby:: Unary g ) { g instanceof @ruby_unary_bang or g instanceof @ruby_unary_not } or
233
234
TNotExprSynth ( Ast:: AstNode parent , int i ) { mkSynthChild ( NotExprKind ( ) , parent , i ) } or
234
235
TOptionalParameter ( Ruby:: OptionalParameter g ) or
235
- TPair ( Ruby:: Pair g ) or
236
+ TPairReal ( Ruby:: Pair g ) or
237
+ TPairSynth ( Ast:: AstNode parent , int i ) { mkSynthChild ( PairExprKind ( ) , parent , i ) } or
236
238
TParenthesizedExpr ( Ruby:: ParenthesizedStatements g ) or
237
239
TParenthesizedPattern ( Ruby:: ParenthesizedPattern g ) or
238
240
TRShiftExprReal ( Ruby:: Binary g ) { g instanceof @ruby_binary_ranglerangle } or
@@ -274,7 +276,10 @@ private module Cached {
274
276
TSimpleParameterSynth ( Ast:: AstNode parent , int i ) {
275
277
mkSynthChild ( SimpleParameterKind ( ) , parent , i )
276
278
} or
277
- TSimpleSymbolLiteral ( Ruby:: SimpleSymbol g ) or
279
+ TSimpleSymbolLiteralReal ( Ruby:: SimpleSymbol g ) or
280
+ TSimpleSymbolLiteralSynth ( Ast:: AstNode parent , int i , string value ) {
281
+ mkSynthChild ( SymbolLiteralExprKind ( value ) , parent , i )
282
+ } or
278
283
TSingletonClass ( Ruby:: SingletonClass g ) or
279
284
TSingletonMethod ( Ruby:: SingletonMethod g ) or
280
285
TSpaceshipExpr ( Ruby:: Binary g ) { g instanceof @ruby_binary_langleequalrangle } or
@@ -362,19 +367,19 @@ private module Cached {
362
367
TEnsure or TEqExpr or TExponentExprReal or TFalseLiteral or TFile or TFindPattern or
363
368
TFloatLiteral or TForExpr or TForwardParameter or TForwardArgument or TGEExpr or TGTExpr or
364
369
TGlobalVariableAccessReal or THashKeySymbolLiteral or THashLiteral or THashPattern or
365
- THashSplatExpr or THashSplatNilParameter or THashSplatParameter or THereDoc or
370
+ THashSplatExprReal or THashSplatNilParameter or THashSplatParameter or THereDoc or
366
371
TIdentifierMethodCall or TIfReal or TIfModifierExpr or TInClauseReal or
367
372
TInstanceVariableAccessReal or TIntegerLiteralReal or TKeywordParameter or TLEExpr or
368
373
TLShiftExprReal or TLTExpr or TLambda or TLeftAssignmentList or TLine or
369
374
TLocalVariableAccessReal or TLogicalAndExprReal or TLogicalOrExprReal or TMethod or
370
375
TMatchPattern or TModuleDeclaration or TModuloExprReal or TMulExprReal or TNEExpr or
371
376
TNextStmt or TNilLiteralReal or TNoRegExpMatchExpr or TNotExprReal or TOptionalParameter or
372
- TPair or TParenthesizedExpr or TParenthesizedPattern or TRShiftExprReal or
377
+ TPairReal or TParenthesizedExpr or TParenthesizedPattern or TRShiftExprReal or
373
378
TRangeLiteralReal or TRationalLiteral or TRedoStmt or TRegExpLiteral or TRegExpMatchExpr or
374
379
TRegularArrayLiteral or TRegularMethodCall or TRegularStringLiteral or TRegularSuperCall or
375
380
TRescueClause or TRescueModifierExpr or TRetryStmt or TReturnStmt or
376
381
TScopeResolutionConstantAccess or TSelfReal or TSimpleParameterReal or
377
- TSimpleSymbolLiteral or TSingletonClass or TSingletonMethod or TSpaceshipExpr or
382
+ TSimpleSymbolLiteralReal or TSingletonClass or TSingletonMethod or TSpaceshipExpr or
378
383
TSplatExprReal or TSplatParameter or TStringArrayLiteral or TStringConcatenation or
379
384
TStringEscapeSequenceComponent or TStringInterpolationComponent or TStringTextComponent or
380
385
TSubExprReal or TSubshellLiteral or TSymbolArrayLiteral or TTernaryIfExpr or TTestPattern or
@@ -392,7 +397,8 @@ private module Cached {
392
397
TLShiftExprSynth or TLocalVariableAccessSynth or TLogicalAndExprSynth or
393
398
TLogicalOrExprSynth or TMethodCallSynth or TModuloExprSynth or TMulExprSynth or
394
399
TNilLiteralSynth or TRShiftExprSynth or TRangeLiteralSynth or TSelfSynth or
395
- TSimpleParameterSynth or TSplatExprSynth or TStmtSequenceSynth or TSubExprSynth ;
400
+ TSimpleParameterSynth or TSplatExprSynth or THashSplatExprSynth or TStmtSequenceSynth or
401
+ TSubExprSynth or TPairSynth or TSimpleSymbolLiteralSynth ;
396
402
397
403
/**
398
404
* Gets the underlying TreeSitter entity for a given AST node. This does not
@@ -468,7 +474,7 @@ private module Cached {
468
474
n = THashKeySymbolLiteral ( result ) or
469
475
n = THashLiteral ( result ) or
470
476
n = THashPattern ( result ) or
471
- n = THashSplatExpr ( result ) or
477
+ n = THashSplatExprReal ( result ) or
472
478
n = THashSplatNilParameter ( result ) or
473
479
n = THashSplatParameter ( result ) or
474
480
n = THereDoc ( result ) or
@@ -499,7 +505,7 @@ private module Cached {
499
505
n = TNoRegExpMatchExpr ( result ) or
500
506
n = TNotExprReal ( result ) or
501
507
n = TOptionalParameter ( result ) or
502
- n = TPair ( result ) or
508
+ n = TPairReal ( result ) or
503
509
n = TParenthesizedExpr ( result ) or
504
510
n = TParenthesizedPattern ( result ) or
505
511
n = TRangeLiteralReal ( result ) or
@@ -519,7 +525,7 @@ private module Cached {
519
525
n = TScopeResolutionConstantAccess ( result , _) or
520
526
n = TSelfReal ( result ) or
521
527
n = TSimpleParameterReal ( result ) or
522
- n = TSimpleSymbolLiteral ( result ) or
528
+ n = TSimpleSymbolLiteralReal ( result ) or
523
529
n = TSingletonClass ( result ) or
524
530
n = TSingletonMethod ( result ) or
525
531
n = TSpaceshipExpr ( result ) or
@@ -633,9 +639,15 @@ private module Cached {
633
639
or
634
640
result = TSplatExprSynth ( parent , i )
635
641
or
642
+ result = THashSplatExprSynth ( parent , i )
643
+ or
636
644
result = TStmtSequenceSynth ( parent , i )
637
645
or
638
646
result = TSubExprSynth ( parent , i )
647
+ or
648
+ result = TPairSynth ( parent , i )
649
+ or
650
+ result = TSimpleSymbolLiteralSynth ( parent , i , _)
639
651
}
640
652
641
653
/**
@@ -726,6 +738,8 @@ class TSelf = TSelfReal or TSelfSynth;
726
738
727
739
class TDestructuredLhsExpr = TDestructuredLeftAssignment or TLeftAssignmentList ;
728
740
741
+ class TPair = TPairReal or TPairSynth ;
742
+
729
743
class TExpr =
730
744
TSelf or TArgumentList or TRescueClause or TRescueModifierExpr or TPair or TStringConcatenation or
731
745
TCall or TBlockArgument or TConstantAccess or TControlExpr or TLiteral or TCallable or
@@ -734,6 +748,8 @@ class TExpr =
734
748
735
749
class TSplatExpr = TSplatExprReal or TSplatExprSynth ;
736
750
751
+ class THashSplatExpr = THashSplatExprReal or THashSplatExprSynth ;
752
+
737
753
class TElse = TElseReal or TElseSynth ;
738
754
739
755
class TStmtSequence =
@@ -768,13 +784,16 @@ class TStringInterpolationComponent =
768
784
TStringInterpolationComponentNonRegexp or TStringInterpolationComponentRegexp ;
769
785
770
786
class TStringComponent =
771
- TStringTextComponent or TStringEscapeSequenceComponent or TStringInterpolationComponent ;
787
+ TStringTextComponent or TStringEscapeSequenceComponent or TStringInterpolationComponent or
788
+ TSimpleSymbolLiteralSynth ;
772
789
773
790
class TStringlikeLiteral =
774
791
TStringLiteral or TRegExpLiteral or TSymbolLiteral or TSubshellLiteral or THereDoc ;
775
792
776
793
class TStringLiteral = TRegularStringLiteral or TBareStringLiteral ;
777
794
795
+ class TSimpleSymbolLiteral = TSimpleSymbolLiteralReal or TSimpleSymbolLiteralSynth ;
796
+
778
797
class TSymbolLiteral = TSimpleSymbolLiteral or TComplexSymbolLiteral or THashKeySymbolLiteral ;
779
798
780
799
class TComplexSymbolLiteral = TDelimitedSymbolLiteral or TBareSymbolLiteral ;
0 commit comments