ruby_parser 3.18.1 → 3.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/lib/ruby20_parser.y CHANGED
@@ -682,8 +682,7 @@ rule
682
682
 
683
683
  cpath: tCOLON3 cname
684
684
  {
685
- _, (name, line) = val
686
- result = s(:colon3, name.to_sym).line line
685
+ result = wrap :colon3, val[1]
687
686
  }
688
687
  | cname
689
688
  {
@@ -708,9 +707,7 @@ rule
708
707
 
709
708
  fitem: fname
710
709
  {
711
- (id, line), = val
712
-
713
- result = s(:lit, id.to_sym).line line
710
+ result = wrap :lit, val[0]
714
711
  }
715
712
  | symbol
716
713
 
@@ -779,9 +776,9 @@ rule
779
776
  }
780
777
  | tCOLON3 tCONSTANT tOP_ASGN arg_rhs
781
778
  {
782
- _, (lhs, line), op, rhs = val
779
+ _, lhs, op, rhs = val
783
780
 
784
- lhs = s(:colon3, lhs.to_sym).line line
781
+ lhs = wrap :colon3, lhs
785
782
  result = new_const_op_asgn [lhs, op, rhs]
786
783
  }
787
784
  | backref tOP_ASGN arg_rhs
@@ -1182,9 +1179,7 @@ rule
1182
1179
  }
1183
1180
  | tCOLON3 tCONSTANT
1184
1181
  {
1185
- _, (id, line) = val
1186
-
1187
- result = s(:colon3, id.to_sym).line line
1182
+ result = wrap :colon3, val[1]
1188
1183
  }
1189
1184
  | tLBRACK { result = lexer.lineno } aref_args tRBRACK
1190
1185
  {
@@ -1678,8 +1673,7 @@ opt_block_args_tail: tCOMMA block_args_tail
1678
1673
 
1679
1674
  bvar: tIDENTIFIER
1680
1675
  {
1681
- (id, line), = val
1682
- result = s(:shadow, id.to_sym).line line
1676
+ result = wrap :shadow, val[0]
1683
1677
  }
1684
1678
  | f_bad_arg
1685
1679
 
@@ -2194,18 +2188,15 @@ regexp_contents: none
2194
2188
 
2195
2189
  string_dvar: tGVAR
2196
2190
  {
2197
- (id, line), = val
2198
- result = s(:gvar, id.to_sym).line line
2191
+ result = wrap :gvar, val[0]
2199
2192
  }
2200
2193
  | tIVAR
2201
2194
  {
2202
- (id, line), = val
2203
- result = s(:ivar, id.to_sym).line line
2195
+ result = wrap :ivar, val[0]
2204
2196
  }
2205
2197
  | tCVAR
2206
2198
  {
2207
- (id, line), = val
2208
- result = s(:cvar, id.to_sym).line line
2199
+ result = wrap :cvar, val[0]
2209
2200
  }
2210
2201
  | backref
2211
2202
 
@@ -2214,17 +2205,13 @@ regexp_contents: none
2214
2205
 
2215
2206
  ssym: tSYMBEG sym
2216
2207
  {
2217
- _, (id, line) = val
2218
-
2219
2208
  lexer.lex_state = EXPR_END
2220
- result = s(:lit, id.to_sym).line line
2209
+ result = wrap :lit, val[1]
2221
2210
  }
2222
2211
  | tSYMBOL
2223
2212
  {
2224
- (id, line), = val
2225
-
2226
2213
  lexer.lex_state = EXPR_END
2227
- result = s(:lit, id.to_sym).line line
2214
+ result = wrap :lit, val[0]
2228
2215
  }
2229
2216
 
2230
2217
  sym: fname | tIVAR | tGVAR | tCVAR
@@ -2647,10 +2634,10 @@ keyword_variable: kNIL { result = s(:nil).line lexer.lineno }
2647
2634
  }
2648
2635
  | tLABEL arg_value
2649
2636
  {
2650
- (label, line), arg = val
2637
+ label, arg = val
2651
2638
 
2652
- lit = s(:lit, label.to_sym).line line
2653
- result = s(:array, lit, arg).line line
2639
+ lit = wrap :lit, label
2640
+ result = s(:array, lit, arg).line lit.line
2654
2641
  }
2655
2642
  | tDSTAR arg_value
2656
2643
  {