jruby-prism-parser 0.24.0-java → 1.4.0-java

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.
Files changed (148) hide show
  1. checksums.yaml +4 -4
  2. data/BSDmakefile +58 -0
  3. data/CHANGELOG.md +269 -1
  4. data/CONTRIBUTING.md +0 -4
  5. data/Makefile +25 -18
  6. data/README.md +57 -6
  7. data/config.yml +1724 -140
  8. data/docs/build_system.md +39 -11
  9. data/docs/configuration.md +4 -0
  10. data/docs/cruby_compilation.md +1 -1
  11. data/docs/fuzzing.md +1 -1
  12. data/docs/parser_translation.md +14 -9
  13. data/docs/parsing_rules.md +4 -1
  14. data/docs/releasing.md +8 -10
  15. data/docs/relocation.md +34 -0
  16. data/docs/ripper_translation.md +72 -0
  17. data/docs/ruby_api.md +2 -1
  18. data/docs/serialization.md +29 -5
  19. data/ext/prism/api_node.c +3395 -1999
  20. data/ext/prism/api_pack.c +9 -0
  21. data/ext/prism/extconf.rb +55 -34
  22. data/ext/prism/extension.c +597 -346
  23. data/ext/prism/extension.h +6 -5
  24. data/include/prism/ast.h +2612 -455
  25. data/include/prism/defines.h +160 -2
  26. data/include/prism/diagnostic.h +188 -76
  27. data/include/prism/encoding.h +22 -4
  28. data/include/prism/node.h +89 -17
  29. data/include/prism/options.h +224 -12
  30. data/include/prism/pack.h +11 -0
  31. data/include/prism/parser.h +267 -66
  32. data/include/prism/prettyprint.h +8 -0
  33. data/include/prism/regexp.h +18 -8
  34. data/include/prism/static_literals.h +121 -0
  35. data/include/prism/util/pm_buffer.h +75 -2
  36. data/include/prism/util/pm_char.h +1 -2
  37. data/include/prism/util/pm_constant_pool.h +18 -9
  38. data/include/prism/util/pm_integer.h +126 -0
  39. data/include/prism/util/pm_list.h +1 -1
  40. data/include/prism/util/pm_newline_list.h +19 -0
  41. data/include/prism/util/pm_string.h +48 -8
  42. data/include/prism/version.h +3 -3
  43. data/include/prism.h +99 -5
  44. data/jruby-prism.jar +0 -0
  45. data/lib/prism/compiler.rb +11 -1
  46. data/lib/prism/desugar_compiler.rb +113 -74
  47. data/lib/prism/dispatcher.rb +45 -1
  48. data/lib/prism/dot_visitor.rb +201 -77
  49. data/lib/prism/dsl.rb +673 -461
  50. data/lib/prism/ffi.rb +233 -45
  51. data/lib/prism/inspect_visitor.rb +2389 -0
  52. data/lib/prism/lex_compat.rb +35 -16
  53. data/lib/prism/mutation_compiler.rb +24 -8
  54. data/lib/prism/node.rb +7731 -8460
  55. data/lib/prism/node_ext.rb +328 -32
  56. data/lib/prism/pack.rb +4 -0
  57. data/lib/prism/parse_result/comments.rb +34 -24
  58. data/lib/prism/parse_result/errors.rb +65 -0
  59. data/lib/prism/parse_result/newlines.rb +102 -12
  60. data/lib/prism/parse_result.rb +448 -44
  61. data/lib/prism/pattern.rb +28 -10
  62. data/lib/prism/polyfill/append_as_bytes.rb +15 -0
  63. data/lib/prism/polyfill/byteindex.rb +13 -0
  64. data/lib/prism/polyfill/unpack1.rb +14 -0
  65. data/lib/prism/reflection.rb +413 -0
  66. data/lib/prism/relocation.rb +504 -0
  67. data/lib/prism/serialize.rb +1940 -1198
  68. data/lib/prism/string_query.rb +30 -0
  69. data/lib/prism/translation/parser/builder.rb +61 -0
  70. data/lib/prism/translation/parser/compiler.rb +569 -195
  71. data/lib/prism/translation/parser/lexer.rb +516 -39
  72. data/lib/prism/translation/parser.rb +177 -12
  73. data/lib/prism/translation/parser33.rb +1 -1
  74. data/lib/prism/translation/parser34.rb +1 -1
  75. data/lib/prism/translation/parser35.rb +12 -0
  76. data/lib/prism/translation/ripper/sexp.rb +125 -0
  77. data/lib/prism/translation/ripper/shim.rb +5 -0
  78. data/lib/prism/translation/ripper.rb +3224 -462
  79. data/lib/prism/translation/ruby_parser.rb +194 -69
  80. data/lib/prism/translation.rb +4 -1
  81. data/lib/prism/version.rb +1 -1
  82. data/lib/prism/visitor.rb +13 -0
  83. data/lib/prism.rb +17 -27
  84. data/prism.gemspec +57 -17
  85. data/rbi/prism/compiler.rbi +12 -0
  86. data/rbi/prism/dsl.rbi +524 -0
  87. data/rbi/prism/inspect_visitor.rbi +12 -0
  88. data/rbi/prism/node.rbi +8722 -0
  89. data/rbi/prism/node_ext.rbi +107 -0
  90. data/rbi/prism/parse_result.rbi +404 -0
  91. data/rbi/prism/reflection.rbi +58 -0
  92. data/rbi/prism/string_query.rbi +12 -0
  93. data/rbi/prism/translation/parser.rbi +11 -0
  94. data/rbi/prism/translation/parser33.rbi +6 -0
  95. data/rbi/prism/translation/parser34.rbi +6 -0
  96. data/rbi/prism/translation/parser35.rbi +6 -0
  97. data/rbi/prism/translation/ripper.rbi +15 -0
  98. data/rbi/prism/visitor.rbi +473 -0
  99. data/rbi/prism.rbi +44 -7745
  100. data/sig/prism/compiler.rbs +9 -0
  101. data/sig/prism/dispatcher.rbs +16 -0
  102. data/sig/prism/dot_visitor.rbs +6 -0
  103. data/sig/prism/dsl.rbs +351 -0
  104. data/sig/prism/inspect_visitor.rbs +22 -0
  105. data/sig/prism/lex_compat.rbs +10 -0
  106. data/sig/prism/mutation_compiler.rbs +159 -0
  107. data/sig/prism/node.rbs +3614 -0
  108. data/sig/prism/node_ext.rbs +82 -0
  109. data/sig/prism/pack.rbs +43 -0
  110. data/sig/prism/parse_result.rbs +192 -0
  111. data/sig/prism/pattern.rbs +13 -0
  112. data/sig/prism/reflection.rbs +50 -0
  113. data/sig/prism/relocation.rbs +185 -0
  114. data/sig/prism/serialize.rbs +8 -0
  115. data/sig/prism/string_query.rbs +11 -0
  116. data/sig/prism/visitor.rbs +169 -0
  117. data/sig/prism.rbs +248 -4767
  118. data/src/diagnostic.c +672 -230
  119. data/src/encoding.c +211 -108
  120. data/src/node.c +7541 -1653
  121. data/src/options.c +135 -20
  122. data/src/pack.c +33 -17
  123. data/src/prettyprint.c +1543 -1485
  124. data/src/prism.c +7813 -3050
  125. data/src/regexp.c +225 -73
  126. data/src/serialize.c +101 -77
  127. data/src/static_literals.c +617 -0
  128. data/src/token_type.c +14 -13
  129. data/src/util/pm_buffer.c +187 -20
  130. data/src/util/pm_char.c +5 -5
  131. data/src/util/pm_constant_pool.c +39 -19
  132. data/src/util/pm_integer.c +670 -0
  133. data/src/util/pm_list.c +1 -1
  134. data/src/util/pm_newline_list.c +43 -5
  135. data/src/util/pm_string.c +213 -33
  136. data/src/util/pm_strncasecmp.c +13 -1
  137. data/src/util/pm_strpbrk.c +32 -6
  138. metadata +55 -19
  139. data/docs/ripper.md +0 -36
  140. data/include/prism/util/pm_state_stack.h +0 -42
  141. data/include/prism/util/pm_string_list.h +0 -44
  142. data/lib/prism/debug.rb +0 -206
  143. data/lib/prism/node_inspector.rb +0 -68
  144. data/lib/prism/translation/parser/rubocop.rb +0 -45
  145. data/rbi/prism_static.rbi +0 -207
  146. data/sig/prism_static.rbs +0 -201
  147. data/src/util/pm_state_stack.c +0 -25
  148. data/src/util/pm_string_list.c +0 -28
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  =begin
3
4
  This file is generated by the templates/template.rb script and should not be
4
5
  modified manually. See templates/lib/prism/dot_visitor.rb.erb
@@ -24,7 +25,7 @@ module Prism
24
25
  if port
25
26
  "<tr><td align=\"left\" colspan=\"2\" port=\"#{name}\">#{name}</td></tr>"
26
27
  else
27
- "<tr><td align=\"left\">#{name}</td><td>#{CGI.escapeHTML(value)}</td></tr>"
28
+ "<tr><td align=\"left\">#{name}</td><td>#{CGI.escapeHTML(value || raise)}</td></tr>"
28
29
  end
29
30
  end
30
31
  end
@@ -764,11 +765,11 @@ module Prism
764
765
  # write_name
765
766
  table.field("write_name", node.write_name.inspect)
766
767
 
767
- # operator
768
- table.field("operator", node.operator.inspect)
768
+ # binary_operator
769
+ table.field("binary_operator", node.binary_operator.inspect)
769
770
 
770
- # operator_loc
771
- table.field("operator_loc", location_inspect(node.operator_loc))
771
+ # binary_operator_loc
772
+ table.field("binary_operator_loc", location_inspect(node.binary_operator_loc))
772
773
 
773
774
  # value
774
775
  table.field("value", port: true)
@@ -908,10 +909,10 @@ module Prism
908
909
  table.field("conditions", "[]")
909
910
  end
910
911
 
911
- # consequent
912
- unless (consequent = node.consequent).nil?
913
- table.field("consequent", port: true)
914
- digraph.edge("#{id}:consequent -> #{node_id(consequent)};")
912
+ # else_clause
913
+ unless (else_clause = node.else_clause).nil?
914
+ table.field("else_clause", port: true)
915
+ digraph.edge("#{id}:else_clause -> #{node_id(else_clause)};")
915
916
  end
916
917
 
917
918
  # case_keyword_loc
@@ -953,10 +954,10 @@ module Prism
953
954
  table.field("conditions", "[]")
954
955
  end
955
956
 
956
- # consequent
957
- unless (consequent = node.consequent).nil?
958
- table.field("consequent", port: true)
959
- digraph.edge("#{id}:consequent -> #{node_id(consequent)};")
957
+ # else_clause
958
+ unless (else_clause = node.else_clause).nil?
959
+ table.field("else_clause", port: true)
960
+ digraph.edge("#{id}:else_clause -> #{node_id(else_clause)};")
960
961
  end
961
962
 
962
963
  # case_keyword_loc
@@ -1059,15 +1060,15 @@ module Prism
1059
1060
  # name_loc
1060
1061
  table.field("name_loc", location_inspect(node.name_loc))
1061
1062
 
1062
- # operator_loc
1063
- table.field("operator_loc", location_inspect(node.operator_loc))
1063
+ # binary_operator_loc
1064
+ table.field("binary_operator_loc", location_inspect(node.binary_operator_loc))
1064
1065
 
1065
1066
  # value
1066
1067
  table.field("value", port: true)
1067
1068
  digraph.edge("#{id}:value -> #{node_id(node.value)};")
1068
1069
 
1069
- # operator
1070
- table.field("operator", node.operator.inspect)
1070
+ # binary_operator
1071
+ table.field("binary_operator", node.binary_operator.inspect)
1071
1072
 
1072
1073
  digraph.nodes << <<~DOT
1073
1074
  #{id} [
@@ -1155,9 +1156,7 @@ module Prism
1155
1156
  digraph.edge("#{id}:value -> #{node_id(node.value)};")
1156
1157
 
1157
1158
  # operator_loc
1158
- unless (operator_loc = node.operator_loc).nil?
1159
- table.field("operator_loc", location_inspect(operator_loc))
1160
- end
1159
+ table.field("operator_loc", location_inspect(node.operator_loc))
1161
1160
 
1162
1161
  digraph.nodes << <<~DOT
1163
1162
  #{id} [
@@ -1206,15 +1205,15 @@ module Prism
1206
1205
  # name_loc
1207
1206
  table.field("name_loc", location_inspect(node.name_loc))
1208
1207
 
1209
- # operator_loc
1210
- table.field("operator_loc", location_inspect(node.operator_loc))
1208
+ # binary_operator_loc
1209
+ table.field("binary_operator_loc", location_inspect(node.binary_operator_loc))
1211
1210
 
1212
1211
  # value
1213
1212
  table.field("value", port: true)
1214
1213
  digraph.edge("#{id}:value -> #{node_id(node.value)};")
1215
1214
 
1216
- # operator
1217
- table.field("operator", node.operator.inspect)
1215
+ # binary_operator
1216
+ table.field("binary_operator", node.binary_operator.inspect)
1218
1217
 
1219
1218
  digraph.nodes << <<~DOT
1220
1219
  #{id} [
@@ -1288,13 +1287,15 @@ module Prism
1288
1287
  digraph.edge("#{id}:parent -> #{node_id(parent)};")
1289
1288
  end
1290
1289
 
1291
- # child
1292
- table.field("child", port: true)
1293
- digraph.edge("#{id}:child -> #{node_id(node.child)};")
1290
+ # name
1291
+ table.field("name", node.name.inspect)
1294
1292
 
1295
1293
  # delimiter_loc
1296
1294
  table.field("delimiter_loc", location_inspect(node.delimiter_loc))
1297
1295
 
1296
+ # name_loc
1297
+ table.field("name_loc", location_inspect(node.name_loc))
1298
+
1298
1299
  digraph.nodes << <<~DOT
1299
1300
  #{id} [
1300
1301
  label=<#{table.to_dot.gsub(/\n/, "\n ")}>
@@ -1313,15 +1314,15 @@ module Prism
1313
1314
  table.field("target", port: true)
1314
1315
  digraph.edge("#{id}:target -> #{node_id(node.target)};")
1315
1316
 
1316
- # operator_loc
1317
- table.field("operator_loc", location_inspect(node.operator_loc))
1317
+ # binary_operator_loc
1318
+ table.field("binary_operator_loc", location_inspect(node.binary_operator_loc))
1318
1319
 
1319
1320
  # value
1320
1321
  table.field("value", port: true)
1321
1322
  digraph.edge("#{id}:value -> #{node_id(node.value)};")
1322
1323
 
1323
- # operator
1324
- table.field("operator", node.operator.inspect)
1324
+ # binary_operator
1325
+ table.field("binary_operator", node.binary_operator.inspect)
1325
1326
 
1326
1327
  digraph.nodes << <<~DOT
1327
1328
  #{id} [
@@ -1368,13 +1369,15 @@ module Prism
1368
1369
  digraph.edge("#{id}:parent -> #{node_id(parent)};")
1369
1370
  end
1370
1371
 
1371
- # child
1372
- table.field("child", port: true)
1373
- digraph.edge("#{id}:child -> #{node_id(node.child)};")
1372
+ # name
1373
+ table.field("name", node.name.inspect)
1374
1374
 
1375
1375
  # delimiter_loc
1376
1376
  table.field("delimiter_loc", location_inspect(node.delimiter_loc))
1377
1377
 
1378
+ # name_loc
1379
+ table.field("name_loc", location_inspect(node.name_loc))
1380
+
1378
1381
  digraph.nodes << <<~DOT
1379
1382
  #{id} [
1380
1383
  label=<#{table.to_dot.gsub(/\n/, "\n ")}>
@@ -1773,6 +1776,9 @@ module Prism
1773
1776
  table = Table.new("FloatNode")
1774
1777
  id = node_id(node)
1775
1778
 
1779
+ # value
1780
+ table.field("value", node.value.inspect)
1781
+
1776
1782
  digraph.nodes << <<~DOT
1777
1783
  #{id} [
1778
1784
  label=<#{table.to_dot.gsub(/\n/, "\n ")}>
@@ -1910,15 +1916,15 @@ module Prism
1910
1916
  # name_loc
1911
1917
  table.field("name_loc", location_inspect(node.name_loc))
1912
1918
 
1913
- # operator_loc
1914
- table.field("operator_loc", location_inspect(node.operator_loc))
1919
+ # binary_operator_loc
1920
+ table.field("binary_operator_loc", location_inspect(node.binary_operator_loc))
1915
1921
 
1916
1922
  # value
1917
1923
  table.field("value", port: true)
1918
1924
  digraph.edge("#{id}:value -> #{node_id(node.value)};")
1919
1925
 
1920
- # operator
1921
- table.field("operator", node.operator.inspect)
1926
+ # binary_operator
1927
+ table.field("binary_operator", node.binary_operator.inspect)
1922
1928
 
1923
1929
  digraph.nodes << <<~DOT
1924
1930
  #{id} [
@@ -2124,10 +2130,10 @@ module Prism
2124
2130
  digraph.edge("#{id}:statements -> #{node_id(statements)};")
2125
2131
  end
2126
2132
 
2127
- # consequent
2128
- unless (consequent = node.consequent).nil?
2129
- table.field("consequent", port: true)
2130
- digraph.edge("#{id}:consequent -> #{node_id(consequent)};")
2133
+ # subsequent
2134
+ unless (subsequent = node.subsequent).nil?
2135
+ table.field("subsequent", port: true)
2136
+ digraph.edge("#{id}:subsequent -> #{node_id(subsequent)};")
2131
2137
  end
2132
2138
 
2133
2139
  # end_keyword_loc
@@ -2316,11 +2322,11 @@ module Prism
2316
2322
  digraph.edge("#{id}:block -> #{node_id(block)};")
2317
2323
  end
2318
2324
 
2319
- # operator
2320
- table.field("operator", node.operator.inspect)
2325
+ # binary_operator
2326
+ table.field("binary_operator", node.binary_operator.inspect)
2321
2327
 
2322
- # operator_loc
2323
- table.field("operator_loc", location_inspect(node.operator_loc))
2328
+ # binary_operator_loc
2329
+ table.field("binary_operator_loc", location_inspect(node.binary_operator_loc))
2324
2330
 
2325
2331
  # value
2326
2332
  table.field("value", port: true)
@@ -2465,15 +2471,15 @@ module Prism
2465
2471
  # name_loc
2466
2472
  table.field("name_loc", location_inspect(node.name_loc))
2467
2473
 
2468
- # operator_loc
2469
- table.field("operator_loc", location_inspect(node.operator_loc))
2474
+ # binary_operator_loc
2475
+ table.field("binary_operator_loc", location_inspect(node.binary_operator_loc))
2470
2476
 
2471
2477
  # value
2472
2478
  table.field("value", port: true)
2473
2479
  digraph.edge("#{id}:value -> #{node_id(node.value)};")
2474
2480
 
2475
- # operator
2476
- table.field("operator", node.operator.inspect)
2481
+ # binary_operator
2482
+ table.field("binary_operator", node.binary_operator.inspect)
2477
2483
 
2478
2484
  digraph.nodes << <<~DOT
2479
2485
  #{id} [
@@ -2580,6 +2586,9 @@ module Prism
2580
2586
  # flags
2581
2587
  table.field("flags", integer_base_flags_inspect(node))
2582
2588
 
2589
+ # value
2590
+ table.field("value", node.value.inspect)
2591
+
2583
2592
  digraph.nodes << <<~DOT
2584
2593
  #{id} [
2585
2594
  label=<#{table.to_dot.gsub(/\n/, "\n ")}>
@@ -2666,6 +2675,9 @@ module Prism
2666
2675
  table = Table.new("InterpolatedStringNode")
2667
2676
  id = node_id(node)
2668
2677
 
2678
+ # flags
2679
+ table.field("flags", interpolated_string_node_flags_inspect(node))
2680
+
2669
2681
  # opening_loc
2670
2682
  unless (opening_loc = node.opening_loc).nil?
2671
2683
  table.field("opening_loc", location_inspect(opening_loc))
@@ -2768,6 +2780,34 @@ module Prism
2768
2780
  super
2769
2781
  end
2770
2782
 
2783
+ # Visit a ItLocalVariableReadNode node.
2784
+ def visit_it_local_variable_read_node(node)
2785
+ table = Table.new("ItLocalVariableReadNode")
2786
+ id = node_id(node)
2787
+
2788
+ digraph.nodes << <<~DOT
2789
+ #{id} [
2790
+ label=<#{table.to_dot.gsub(/\n/, "\n ")}>
2791
+ ];
2792
+ DOT
2793
+
2794
+ super
2795
+ end
2796
+
2797
+ # Visit a ItParametersNode node.
2798
+ def visit_it_parameters_node(node)
2799
+ table = Table.new("ItParametersNode")
2800
+ id = node_id(node)
2801
+
2802
+ digraph.nodes << <<~DOT
2803
+ #{id} [
2804
+ label=<#{table.to_dot.gsub(/\n/, "\n ")}>
2805
+ ];
2806
+ DOT
2807
+
2808
+ super
2809
+ end
2810
+
2771
2811
  # Visit a KeywordHashNode node.
2772
2812
  def visit_keyword_hash_node(node)
2773
2813
  table = Table.new("KeywordHashNode")
@@ -2902,8 +2942,8 @@ module Prism
2902
2942
  # name_loc
2903
2943
  table.field("name_loc", location_inspect(node.name_loc))
2904
2944
 
2905
- # operator_loc
2906
- table.field("operator_loc", location_inspect(node.operator_loc))
2945
+ # binary_operator_loc
2946
+ table.field("binary_operator_loc", location_inspect(node.binary_operator_loc))
2907
2947
 
2908
2948
  # value
2909
2949
  table.field("value", port: true)
@@ -2912,8 +2952,8 @@ module Prism
2912
2952
  # name
2913
2953
  table.field("name", node.name.inspect)
2914
2954
 
2915
- # operator
2916
- table.field("operator", node.operator.inspect)
2955
+ # binary_operator
2956
+ table.field("binary_operator", node.binary_operator.inspect)
2917
2957
 
2918
2958
  # depth
2919
2959
  table.field("depth", node.depth.inspect)
@@ -3568,6 +3608,9 @@ module Prism
3568
3608
  table = Table.new("ParenthesesNode")
3569
3609
  id = node_id(node)
3570
3610
 
3611
+ # flags
3612
+ table.field("flags", parentheses_node_flags_inspect(node))
3613
+
3571
3614
  # body
3572
3615
  unless (body = node.body).nil?
3573
3616
  table.field("body", port: true)
@@ -3753,9 +3796,14 @@ module Prism
3753
3796
  table = Table.new("RationalNode")
3754
3797
  id = node_id(node)
3755
3798
 
3756
- # numeric
3757
- table.field("numeric", port: true)
3758
- digraph.edge("#{id}:numeric -> #{node_id(node.numeric)};")
3799
+ # flags
3800
+ table.field("flags", integer_base_flags_inspect(node))
3801
+
3802
+ # numerator
3803
+ table.field("numerator", node.numerator.inspect)
3804
+
3805
+ # denominator
3806
+ table.field("denominator", node.denominator.inspect)
3759
3807
 
3760
3808
  digraph.nodes << <<~DOT
3761
3809
  #{id} [
@@ -3909,16 +3957,21 @@ module Prism
3909
3957
  digraph.edge("#{id}:reference -> #{node_id(reference)};")
3910
3958
  end
3911
3959
 
3960
+ # then_keyword_loc
3961
+ unless (then_keyword_loc = node.then_keyword_loc).nil?
3962
+ table.field("then_keyword_loc", location_inspect(then_keyword_loc))
3963
+ end
3964
+
3912
3965
  # statements
3913
3966
  unless (statements = node.statements).nil?
3914
3967
  table.field("statements", port: true)
3915
3968
  digraph.edge("#{id}:statements -> #{node_id(statements)};")
3916
3969
  end
3917
3970
 
3918
- # consequent
3919
- unless (consequent = node.consequent).nil?
3920
- table.field("consequent", port: true)
3921
- digraph.edge("#{id}:consequent -> #{node_id(consequent)};")
3971
+ # subsequent
3972
+ unless (subsequent = node.subsequent).nil?
3973
+ table.field("subsequent", port: true)
3974
+ digraph.edge("#{id}:subsequent -> #{node_id(subsequent)};")
3922
3975
  end
3923
3976
 
3924
3977
  digraph.nodes << <<~DOT
@@ -4009,6 +4062,27 @@ module Prism
4009
4062
  super
4010
4063
  end
4011
4064
 
4065
+ # Visit a ShareableConstantNode node.
4066
+ def visit_shareable_constant_node(node)
4067
+ table = Table.new("ShareableConstantNode")
4068
+ id = node_id(node)
4069
+
4070
+ # flags
4071
+ table.field("flags", shareable_constant_node_flags_inspect(node))
4072
+
4073
+ # write
4074
+ table.field("write", port: true)
4075
+ digraph.edge("#{id}:write -> #{node_id(node.write)};")
4076
+
4077
+ digraph.nodes << <<~DOT
4078
+ #{id} [
4079
+ label=<#{table.to_dot.gsub(/\n/, "\n ")}>
4080
+ ];
4081
+ DOT
4082
+
4083
+ super
4084
+ end
4085
+
4012
4086
  # Visit a SingletonClassNode node.
4013
4087
  def visit_singleton_class_node(node)
4014
4088
  table = Table.new("SingletonClassNode")
@@ -4064,6 +4138,9 @@ module Prism
4064
4138
  table = Table.new("SourceFileNode")
4065
4139
  id = node_id(node)
4066
4140
 
4141
+ # flags
4142
+ table.field("flags", string_flags_inspect(node))
4143
+
4067
4144
  # filepath
4068
4145
  table.field("filepath", node.filepath.inspect)
4069
4146
 
@@ -4314,10 +4391,10 @@ module Prism
4314
4391
  digraph.edge("#{id}:statements -> #{node_id(statements)};")
4315
4392
  end
4316
4393
 
4317
- # consequent
4318
- unless (consequent = node.consequent).nil?
4319
- table.field("consequent", port: true)
4320
- digraph.edge("#{id}:consequent -> #{node_id(consequent)};")
4394
+ # else_clause
4395
+ unless (else_clause = node.else_clause).nil?
4396
+ table.field("else_clause", port: true)
4397
+ digraph.edge("#{id}:else_clause -> #{node_id(else_clause)};")
4321
4398
  end
4322
4399
 
4323
4400
  # end_keyword_loc
@@ -4345,6 +4422,11 @@ module Prism
4345
4422
  # keyword_loc
4346
4423
  table.field("keyword_loc", location_inspect(node.keyword_loc))
4347
4424
 
4425
+ # do_keyword_loc
4426
+ unless (do_keyword_loc = node.do_keyword_loc).nil?
4427
+ table.field("do_keyword_loc", location_inspect(do_keyword_loc))
4428
+ end
4429
+
4348
4430
  # closing_loc
4349
4431
  unless (closing_loc = node.closing_loc).nil?
4350
4432
  table.field("closing_loc", location_inspect(closing_loc))
@@ -4390,6 +4472,11 @@ module Prism
4390
4472
  table.field("conditions", "[]")
4391
4473
  end
4392
4474
 
4475
+ # then_keyword_loc
4476
+ unless (then_keyword_loc = node.then_keyword_loc).nil?
4477
+ table.field("then_keyword_loc", location_inspect(then_keyword_loc))
4478
+ end
4479
+
4393
4480
  # statements
4394
4481
  unless (statements = node.statements).nil?
4395
4482
  table.field("statements", port: true)
@@ -4416,6 +4503,11 @@ module Prism
4416
4503
  # keyword_loc
4417
4504
  table.field("keyword_loc", location_inspect(node.keyword_loc))
4418
4505
 
4506
+ # do_keyword_loc
4507
+ unless (do_keyword_loc = node.do_keyword_loc).nil?
4508
+ table.field("do_keyword_loc", location_inspect(do_keyword_loc))
4509
+ end
4510
+
4419
4511
  # closing_loc
4420
4512
  unless (closing_loc = node.closing_loc).nil?
4421
4513
  table.field("closing_loc", location_inspect(closing_loc))
@@ -4517,15 +4609,19 @@ module Prism
4517
4609
  # Inspect a node that has arguments_node_flags flags to display the flags as a
4518
4610
  # comma-separated list.
4519
4611
  def arguments_node_flags_inspect(node)
4520
- flags = []
4612
+ flags = [] #: Array[String]
4613
+ flags << "contains_forwarding" if node.contains_forwarding?
4614
+ flags << "contains_keywords" if node.contains_keywords?
4521
4615
  flags << "contains_keyword_splat" if node.contains_keyword_splat?
4616
+ flags << "contains_splat" if node.contains_splat?
4617
+ flags << "contains_multiple_splats" if node.contains_multiple_splats?
4522
4618
  flags.join(", ")
4523
4619
  end
4524
4620
 
4525
4621
  # Inspect a node that has array_node_flags flags to display the flags as a
4526
4622
  # comma-separated list.
4527
4623
  def array_node_flags_inspect(node)
4528
- flags = []
4624
+ flags = [] #: Array[String]
4529
4625
  flags << "contains_splat" if node.contains_splat?
4530
4626
  flags.join(", ")
4531
4627
  end
@@ -4533,7 +4629,7 @@ module Prism
4533
4629
  # Inspect a node that has call_node_flags flags to display the flags as a
4534
4630
  # comma-separated list.
4535
4631
  def call_node_flags_inspect(node)
4536
- flags = []
4632
+ flags = [] #: Array[String]
4537
4633
  flags << "safe_navigation" if node.safe_navigation?
4538
4634
  flags << "variable_call" if node.variable_call?
4539
4635
  flags << "attribute_write" if node.attribute_write?
@@ -4544,7 +4640,7 @@ module Prism
4544
4640
  # Inspect a node that has encoding_flags flags to display the flags as a
4545
4641
  # comma-separated list.
4546
4642
  def encoding_flags_inspect(node)
4547
- flags = []
4643
+ flags = [] #: Array[String]
4548
4644
  flags << "forced_utf8_encoding" if node.forced_utf8_encoding?
4549
4645
  flags << "forced_binary_encoding" if node.forced_binary_encoding?
4550
4646
  flags.join(", ")
@@ -4553,7 +4649,7 @@ module Prism
4553
4649
  # Inspect a node that has integer_base_flags flags to display the flags as a
4554
4650
  # comma-separated list.
4555
4651
  def integer_base_flags_inspect(node)
4556
- flags = []
4652
+ flags = [] #: Array[String]
4557
4653
  flags << "binary" if node.binary?
4558
4654
  flags << "decimal" if node.decimal?
4559
4655
  flags << "octal" if node.octal?
@@ -4561,10 +4657,19 @@ module Prism
4561
4657
  flags.join(", ")
4562
4658
  end
4563
4659
 
4660
+ # Inspect a node that has interpolated_string_node_flags flags to display the flags as a
4661
+ # comma-separated list.
4662
+ def interpolated_string_node_flags_inspect(node)
4663
+ flags = [] #: Array[String]
4664
+ flags << "frozen" if node.frozen?
4665
+ flags << "mutable" if node.mutable?
4666
+ flags.join(", ")
4667
+ end
4668
+
4564
4669
  # Inspect a node that has keyword_hash_node_flags flags to display the flags as a
4565
4670
  # comma-separated list.
4566
4671
  def keyword_hash_node_flags_inspect(node)
4567
- flags = []
4672
+ flags = [] #: Array[String]
4568
4673
  flags << "symbol_keys" if node.symbol_keys?
4569
4674
  flags.join(", ")
4570
4675
  end
@@ -4572,7 +4677,7 @@ module Prism
4572
4677
  # Inspect a node that has loop_flags flags to display the flags as a
4573
4678
  # comma-separated list.
4574
4679
  def loop_flags_inspect(node)
4575
- flags = []
4680
+ flags = [] #: Array[String]
4576
4681
  flags << "begin_modifier" if node.begin_modifier?
4577
4682
  flags.join(", ")
4578
4683
  end
@@ -4580,15 +4685,23 @@ module Prism
4580
4685
  # Inspect a node that has parameter_flags flags to display the flags as a
4581
4686
  # comma-separated list.
4582
4687
  def parameter_flags_inspect(node)
4583
- flags = []
4688
+ flags = [] #: Array[String]
4584
4689
  flags << "repeated_parameter" if node.repeated_parameter?
4585
4690
  flags.join(", ")
4586
4691
  end
4587
4692
 
4693
+ # Inspect a node that has parentheses_node_flags flags to display the flags as a
4694
+ # comma-separated list.
4695
+ def parentheses_node_flags_inspect(node)
4696
+ flags = [] #: Array[String]
4697
+ flags << "multiple_statements" if node.multiple_statements?
4698
+ flags.join(", ")
4699
+ end
4700
+
4588
4701
  # Inspect a node that has range_flags flags to display the flags as a
4589
4702
  # comma-separated list.
4590
4703
  def range_flags_inspect(node)
4591
- flags = []
4704
+ flags = [] #: Array[String]
4592
4705
  flags << "exclude_end" if node.exclude_end?
4593
4706
  flags.join(", ")
4594
4707
  end
@@ -4596,7 +4709,7 @@ module Prism
4596
4709
  # Inspect a node that has regular_expression_flags flags to display the flags as a
4597
4710
  # comma-separated list.
4598
4711
  def regular_expression_flags_inspect(node)
4599
- flags = []
4712
+ flags = [] #: Array[String]
4600
4713
  flags << "ignore_case" if node.ignore_case?
4601
4714
  flags << "extended" if node.extended?
4602
4715
  flags << "multi_line" if node.multi_line?
@@ -4611,20 +4724,31 @@ module Prism
4611
4724
  flags.join(", ")
4612
4725
  end
4613
4726
 
4727
+ # Inspect a node that has shareable_constant_node_flags flags to display the flags as a
4728
+ # comma-separated list.
4729
+ def shareable_constant_node_flags_inspect(node)
4730
+ flags = [] #: Array[String]
4731
+ flags << "literal" if node.literal?
4732
+ flags << "experimental_everything" if node.experimental_everything?
4733
+ flags << "experimental_copy" if node.experimental_copy?
4734
+ flags.join(", ")
4735
+ end
4736
+
4614
4737
  # Inspect a node that has string_flags flags to display the flags as a
4615
4738
  # comma-separated list.
4616
4739
  def string_flags_inspect(node)
4617
- flags = []
4740
+ flags = [] #: Array[String]
4618
4741
  flags << "forced_utf8_encoding" if node.forced_utf8_encoding?
4619
4742
  flags << "forced_binary_encoding" if node.forced_binary_encoding?
4620
4743
  flags << "frozen" if node.frozen?
4744
+ flags << "mutable" if node.mutable?
4621
4745
  flags.join(", ")
4622
4746
  end
4623
4747
 
4624
4748
  # Inspect a node that has symbol_flags flags to display the flags as a
4625
4749
  # comma-separated list.
4626
4750
  def symbol_flags_inspect(node)
4627
- flags = []
4751
+ flags = [] #: Array[String]
4628
4752
  flags << "forced_utf8_encoding" if node.forced_utf8_encoding?
4629
4753
  flags << "forced_binary_encoding" if node.forced_binary_encoding?
4630
4754
  flags << "forced_us_ascii_encoding" if node.forced_us_ascii_encoding?