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/ruby21_parser.y CHANGED
@@ -679,8 +679,7 @@ rule
679
679
 
680
680
  cpath: tCOLON3 cname
681
681
  {
682
- _, (name, line) = val
683
- result = s(:colon3, name.to_sym).line line
682
+ result = wrap :colon3, val[1]
684
683
  }
685
684
  | cname
686
685
  {
@@ -705,9 +704,7 @@ rule
705
704
 
706
705
  fitem: fname
707
706
  {
708
- (id, line), = val
709
-
710
- result = s(:lit, id.to_sym).line line
707
+ result = wrap :lit, val[0]
711
708
  }
712
709
  | symbol
713
710
 
@@ -776,9 +773,9 @@ rule
776
773
  }
777
774
  | tCOLON3 tCONSTANT tOP_ASGN arg_rhs
778
775
  {
779
- _, (lhs, line), op, rhs = val
776
+ _, lhs, op, rhs = val
780
777
 
781
- lhs = s(:colon3, lhs.to_sym).line line
778
+ lhs = wrap :colon3, lhs
782
779
  result = new_const_op_asgn [lhs, op, rhs]
783
780
  }
784
781
  | backref tOP_ASGN arg_rhs
@@ -1180,9 +1177,7 @@ rule
1180
1177
  }
1181
1178
  | tCOLON3 tCONSTANT
1182
1179
  {
1183
- _, (id, line) = val
1184
-
1185
- result = s(:colon3, id.to_sym).line line
1180
+ result = wrap :colon3, val[1]
1186
1181
  }
1187
1182
  | tLBRACK { result = lexer.lineno } aref_args tRBRACK
1188
1183
  {
@@ -1676,8 +1671,7 @@ opt_block_args_tail: tCOMMA block_args_tail
1676
1671
 
1677
1672
  bvar: tIDENTIFIER
1678
1673
  {
1679
- (id, line), = val
1680
- result = s(:shadow, id.to_sym).line line
1674
+ result = wrap :shadow, val[0]
1681
1675
  }
1682
1676
  | f_bad_arg
1683
1677
 
@@ -2192,18 +2186,15 @@ regexp_contents: none
2192
2186
 
2193
2187
  string_dvar: tGVAR
2194
2188
  {
2195
- (id, line), = val
2196
- result = s(:gvar, id.to_sym).line line
2189
+ result = wrap :gvar, val[0]
2197
2190
  }
2198
2191
  | tIVAR
2199
2192
  {
2200
- (id, line), = val
2201
- result = s(:ivar, id.to_sym).line line
2193
+ result = wrap :ivar, val[0]
2202
2194
  }
2203
2195
  | tCVAR
2204
2196
  {
2205
- (id, line), = val
2206
- result = s(:cvar, id.to_sym).line line
2197
+ result = wrap :cvar, val[0]
2207
2198
  }
2208
2199
  | backref
2209
2200
 
@@ -2212,17 +2203,13 @@ regexp_contents: none
2212
2203
 
2213
2204
  ssym: tSYMBEG sym
2214
2205
  {
2215
- _, (id, line) = val
2216
-
2217
2206
  lexer.lex_state = EXPR_END
2218
- result = s(:lit, id.to_sym).line line
2207
+ result = wrap :lit, val[1]
2219
2208
  }
2220
2209
  | tSYMBOL
2221
2210
  {
2222
- (id, line), = val
2223
-
2224
2211
  lexer.lex_state = EXPR_END
2225
- result = s(:lit, id.to_sym).line line
2212
+ result = wrap :lit, val[0]
2226
2213
  }
2227
2214
 
2228
2215
  sym: fname | tIVAR | tGVAR | tCVAR
@@ -2664,10 +2651,10 @@ keyword_variable: kNIL { result = s(:nil).line lexer.lineno }
2664
2651
  }
2665
2652
  | tLABEL arg_value
2666
2653
  {
2667
- (label, line), arg = val
2654
+ label, arg = val
2668
2655
 
2669
- lit = s(:lit, label.to_sym).line line
2670
- result = s(:array, lit, arg).line line
2656
+ lit = wrap :lit, label
2657
+ result = s(:array, lit, arg).line lit.line
2671
2658
  }
2672
2659
  | tDSTAR arg_value
2673
2660
  {