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.
- checksums.yaml +4 -4
- data/BSDmakefile +58 -0
- data/CHANGELOG.md +269 -1
- data/CONTRIBUTING.md +0 -4
- data/Makefile +25 -18
- data/README.md +57 -6
- data/config.yml +1724 -140
- data/docs/build_system.md +39 -11
- data/docs/configuration.md +4 -0
- data/docs/cruby_compilation.md +1 -1
- data/docs/fuzzing.md +1 -1
- data/docs/parser_translation.md +14 -9
- data/docs/parsing_rules.md +4 -1
- data/docs/releasing.md +8 -10
- data/docs/relocation.md +34 -0
- data/docs/ripper_translation.md +72 -0
- data/docs/ruby_api.md +2 -1
- data/docs/serialization.md +29 -5
- data/ext/prism/api_node.c +3395 -1999
- data/ext/prism/api_pack.c +9 -0
- data/ext/prism/extconf.rb +55 -34
- data/ext/prism/extension.c +597 -346
- data/ext/prism/extension.h +6 -5
- data/include/prism/ast.h +2612 -455
- data/include/prism/defines.h +160 -2
- data/include/prism/diagnostic.h +188 -76
- data/include/prism/encoding.h +22 -4
- data/include/prism/node.h +89 -17
- data/include/prism/options.h +224 -12
- data/include/prism/pack.h +11 -0
- data/include/prism/parser.h +267 -66
- data/include/prism/prettyprint.h +8 -0
- data/include/prism/regexp.h +18 -8
- data/include/prism/static_literals.h +121 -0
- data/include/prism/util/pm_buffer.h +75 -2
- data/include/prism/util/pm_char.h +1 -2
- data/include/prism/util/pm_constant_pool.h +18 -9
- data/include/prism/util/pm_integer.h +126 -0
- data/include/prism/util/pm_list.h +1 -1
- data/include/prism/util/pm_newline_list.h +19 -0
- data/include/prism/util/pm_string.h +48 -8
- data/include/prism/version.h +3 -3
- data/include/prism.h +99 -5
- data/jruby-prism.jar +0 -0
- data/lib/prism/compiler.rb +11 -1
- data/lib/prism/desugar_compiler.rb +113 -74
- data/lib/prism/dispatcher.rb +45 -1
- data/lib/prism/dot_visitor.rb +201 -77
- data/lib/prism/dsl.rb +673 -461
- data/lib/prism/ffi.rb +233 -45
- data/lib/prism/inspect_visitor.rb +2389 -0
- data/lib/prism/lex_compat.rb +35 -16
- data/lib/prism/mutation_compiler.rb +24 -8
- data/lib/prism/node.rb +7731 -8460
- data/lib/prism/node_ext.rb +328 -32
- data/lib/prism/pack.rb +4 -0
- data/lib/prism/parse_result/comments.rb +34 -24
- data/lib/prism/parse_result/errors.rb +65 -0
- data/lib/prism/parse_result/newlines.rb +102 -12
- data/lib/prism/parse_result.rb +448 -44
- data/lib/prism/pattern.rb +28 -10
- data/lib/prism/polyfill/append_as_bytes.rb +15 -0
- data/lib/prism/polyfill/byteindex.rb +13 -0
- data/lib/prism/polyfill/unpack1.rb +14 -0
- data/lib/prism/reflection.rb +413 -0
- data/lib/prism/relocation.rb +504 -0
- data/lib/prism/serialize.rb +1940 -1198
- data/lib/prism/string_query.rb +30 -0
- data/lib/prism/translation/parser/builder.rb +61 -0
- data/lib/prism/translation/parser/compiler.rb +569 -195
- data/lib/prism/translation/parser/lexer.rb +516 -39
- data/lib/prism/translation/parser.rb +177 -12
- data/lib/prism/translation/parser33.rb +1 -1
- data/lib/prism/translation/parser34.rb +1 -1
- data/lib/prism/translation/parser35.rb +12 -0
- data/lib/prism/translation/ripper/sexp.rb +125 -0
- data/lib/prism/translation/ripper/shim.rb +5 -0
- data/lib/prism/translation/ripper.rb +3224 -462
- data/lib/prism/translation/ruby_parser.rb +194 -69
- data/lib/prism/translation.rb +4 -1
- data/lib/prism/version.rb +1 -1
- data/lib/prism/visitor.rb +13 -0
- data/lib/prism.rb +17 -27
- data/prism.gemspec +57 -17
- data/rbi/prism/compiler.rbi +12 -0
- data/rbi/prism/dsl.rbi +524 -0
- data/rbi/prism/inspect_visitor.rbi +12 -0
- data/rbi/prism/node.rbi +8722 -0
- data/rbi/prism/node_ext.rbi +107 -0
- data/rbi/prism/parse_result.rbi +404 -0
- data/rbi/prism/reflection.rbi +58 -0
- data/rbi/prism/string_query.rbi +12 -0
- data/rbi/prism/translation/parser.rbi +11 -0
- data/rbi/prism/translation/parser33.rbi +6 -0
- data/rbi/prism/translation/parser34.rbi +6 -0
- data/rbi/prism/translation/parser35.rbi +6 -0
- data/rbi/prism/translation/ripper.rbi +15 -0
- data/rbi/prism/visitor.rbi +473 -0
- data/rbi/prism.rbi +44 -7745
- data/sig/prism/compiler.rbs +9 -0
- data/sig/prism/dispatcher.rbs +16 -0
- data/sig/prism/dot_visitor.rbs +6 -0
- data/sig/prism/dsl.rbs +351 -0
- data/sig/prism/inspect_visitor.rbs +22 -0
- data/sig/prism/lex_compat.rbs +10 -0
- data/sig/prism/mutation_compiler.rbs +159 -0
- data/sig/prism/node.rbs +3614 -0
- data/sig/prism/node_ext.rbs +82 -0
- data/sig/prism/pack.rbs +43 -0
- data/sig/prism/parse_result.rbs +192 -0
- data/sig/prism/pattern.rbs +13 -0
- data/sig/prism/reflection.rbs +50 -0
- data/sig/prism/relocation.rbs +185 -0
- data/sig/prism/serialize.rbs +8 -0
- data/sig/prism/string_query.rbs +11 -0
- data/sig/prism/visitor.rbs +169 -0
- data/sig/prism.rbs +248 -4767
- data/src/diagnostic.c +672 -230
- data/src/encoding.c +211 -108
- data/src/node.c +7541 -1653
- data/src/options.c +135 -20
- data/src/pack.c +33 -17
- data/src/prettyprint.c +1543 -1485
- data/src/prism.c +7813 -3050
- data/src/regexp.c +225 -73
- data/src/serialize.c +101 -77
- data/src/static_literals.c +617 -0
- data/src/token_type.c +14 -13
- data/src/util/pm_buffer.c +187 -20
- data/src/util/pm_char.c +5 -5
- data/src/util/pm_constant_pool.c +39 -19
- data/src/util/pm_integer.c +670 -0
- data/src/util/pm_list.c +1 -1
- data/src/util/pm_newline_list.c +43 -5
- data/src/util/pm_string.c +213 -33
- data/src/util/pm_strncasecmp.c +13 -1
- data/src/util/pm_strpbrk.c +32 -6
- metadata +55 -19
- data/docs/ripper.md +0 -36
- data/include/prism/util/pm_state_stack.h +0 -42
- data/include/prism/util/pm_string_list.h +0 -44
- data/lib/prism/debug.rb +0 -206
- data/lib/prism/node_inspector.rb +0 -68
- data/lib/prism/translation/parser/rubocop.rb +0 -45
- data/rbi/prism_static.rbi +0 -207
- data/sig/prism_static.rbs +0 -201
- data/src/util/pm_state_stack.c +0 -25
- data/src/util/pm_string_list.c +0 -28
data/lib/prism/dot_visitor.rb
CHANGED
@@ -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
|
-
#
|
768
|
-
table.field("
|
768
|
+
# binary_operator
|
769
|
+
table.field("binary_operator", node.binary_operator.inspect)
|
769
770
|
|
770
|
-
#
|
771
|
-
table.field("
|
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
|
-
#
|
912
|
-
unless (
|
913
|
-
table.field("
|
914
|
-
digraph.edge("#{id}:
|
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
|
-
#
|
957
|
-
unless (
|
958
|
-
table.field("
|
959
|
-
digraph.edge("#{id}:
|
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
|
-
#
|
1063
|
-
table.field("
|
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
|
-
#
|
1070
|
-
table.field("
|
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
|
-
|
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
|
-
#
|
1210
|
-
table.field("
|
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
|
-
#
|
1217
|
-
table.field("
|
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
|
-
#
|
1292
|
-
table.field("
|
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
|
-
#
|
1317
|
-
table.field("
|
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
|
-
#
|
1324
|
-
table.field("
|
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
|
-
#
|
1372
|
-
table.field("
|
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
|
-
#
|
1914
|
-
table.field("
|
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
|
-
#
|
1921
|
-
table.field("
|
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
|
-
#
|
2128
|
-
unless (
|
2129
|
-
table.field("
|
2130
|
-
digraph.edge("#{id}:
|
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
|
-
#
|
2320
|
-
table.field("
|
2325
|
+
# binary_operator
|
2326
|
+
table.field("binary_operator", node.binary_operator.inspect)
|
2321
2327
|
|
2322
|
-
#
|
2323
|
-
table.field("
|
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
|
-
#
|
2469
|
-
table.field("
|
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
|
-
#
|
2476
|
-
table.field("
|
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
|
-
#
|
2906
|
-
table.field("
|
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
|
-
#
|
2916
|
-
table.field("
|
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
|
-
#
|
3757
|
-
table.field("
|
3758
|
-
|
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
|
-
#
|
3919
|
-
unless (
|
3920
|
-
table.field("
|
3921
|
-
digraph.edge("#{id}:
|
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
|
-
#
|
4318
|
-
unless (
|
4319
|
-
table.field("
|
4320
|
-
digraph.edge("#{id}:
|
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?
|