File tree Expand file tree Collapse file tree 2 files changed +16
-8
lines changed Expand file tree Collapse file tree 2 files changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -875,10 +875,10 @@ module Ruby {
875
875
final override string getAPrimaryQlClass ( ) { result = "HashSplatArgument" }
876
876
877
877
/** Gets the child of this node. */
878
- final UnderscoreArg getChild ( ) { ruby_hash_splat_argument_def ( this , result ) }
878
+ final UnderscoreArg getChild ( ) { ruby_hash_splat_argument_child ( this , result ) }
879
879
880
880
/** Gets a field or child node of this node. */
881
- final override AstNode getAFieldOrChild ( ) { ruby_hash_splat_argument_def ( this , result ) }
881
+ final override AstNode getAFieldOrChild ( ) { ruby_hash_splat_argument_child ( this , result ) }
882
882
}
883
883
884
884
/** A class representing `hash_splat_nil` tokens. */
@@ -1572,10 +1572,10 @@ module Ruby {
1572
1572
final override string getAPrimaryQlClass ( ) { result = "SplatArgument" }
1573
1573
1574
1574
/** Gets the child of this node. */
1575
- final UnderscoreArg getChild ( ) { ruby_splat_argument_def ( this , result ) }
1575
+ final UnderscoreArg getChild ( ) { ruby_splat_argument_child ( this , result ) }
1576
1576
1577
1577
/** Gets a field or child node of this node. */
1578
- final override AstNode getAFieldOrChild ( ) { ruby_splat_argument_def ( this , result ) }
1578
+ final override AstNode getAFieldOrChild ( ) { ruby_splat_argument_child ( this , result ) }
1579
1579
}
1580
1580
1581
1581
/** A class representing `splat_parameter` nodes. */
Original file line number Diff line number Diff line change @@ -661,9 +661,13 @@ ruby_hash_pattern_def(
661
661
unique int id: @ruby_hash_pattern
662
662
);
663
663
664
+ ruby_hash_splat_argument_child(
665
+ unique int ruby_hash_splat_argument: @ruby_hash_splat_argument ref,
666
+ unique int child: @ruby_underscore_arg ref
667
+ );
668
+
664
669
ruby_hash_splat_argument_def(
665
- unique int id: @ruby_hash_splat_argument,
666
- int child: @ruby_underscore_arg ref
670
+ unique int id: @ruby_hash_splat_argument
667
671
);
668
672
669
673
ruby_hash_splat_parameter_name(
@@ -1112,9 +1116,13 @@ ruby_singleton_method_def(
1112
1116
int object: @ruby_singleton_method_object_type ref
1113
1117
);
1114
1118
1119
+ ruby_splat_argument_child(
1120
+ unique int ruby_splat_argument: @ruby_splat_argument ref,
1121
+ unique int child: @ruby_underscore_arg ref
1122
+ );
1123
+
1115
1124
ruby_splat_argument_def(
1116
- unique int id: @ruby_splat_argument,
1117
- int child: @ruby_underscore_arg ref
1125
+ unique int id: @ruby_splat_argument
1118
1126
);
1119
1127
1120
1128
ruby_splat_parameter_name(
You can’t perform that action at this time.
0 commit comments