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
data/ext/prism/api_pack.c CHANGED
@@ -1,5 +1,12 @@
1
1
  #include "prism/extension.h"
2
2
 
3
+ #ifdef PRISM_EXCLUDE_PACK
4
+
5
+ void
6
+ Init_prism_pack(void) {}
7
+
8
+ #else
9
+
3
10
  static VALUE rb_cPrism;
4
11
  static VALUE rb_cPrismPack;
5
12
  static VALUE rb_cPrismPackDirective;
@@ -265,3 +272,5 @@ Init_prism_pack(void) {
265
272
  pack_symbol = ID2SYM(rb_intern("pack"));
266
273
  unpack_symbol = ID2SYM(rb_intern("unpack"));
267
274
  }
275
+
276
+ #endif
data/ext/prism/extconf.rb CHANGED
@@ -1,22 +1,31 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "rbconfig"
4
+
3
5
  if ARGV.delete("--help")
4
6
  print(<<~TEXT)
5
7
  USAGE: ruby #{$PROGRAM_NAME} [options]
6
8
 
7
9
  Flags that are always valid:
8
10
 
9
- --enable-debug-mode-build
10
- Enable debug mode build.
11
- You may also use set PRISM_DEBUG_MODE_BUILD environment variable.
11
+ --enable-build-debug
12
+ Enable debug build.
13
+ You may also set the PRISM_BUILD_DEBUG environment variable.
14
+
15
+ --enable-build-minimal
16
+ Enable minimal build.
17
+ You may also set the PRISM_BUILD_MINIMAL environment variable.
12
18
 
13
19
  --help
14
20
  Display this message.
15
21
 
16
22
  Environment variables used:
17
23
 
18
- PRISM_DEBUG_MODE_BUILD
19
- Equivalent to `--enable-debug-mode-build` when set, even if nil or blank.
24
+ PRISM_BUILD_DEBUG
25
+ Equivalent to `--enable-build-debug` when set, even if nil or blank.
26
+
27
+ PRISM_BUILD_MINIMAL
28
+ Equivalent to `--enable-build-minimal` when set, even if nil or blank.
20
29
 
21
30
  TEXT
22
31
  exit!(0)
@@ -36,23 +45,29 @@ end
36
45
  # Runs `make` in the root directory of the project. Note that this is the
37
46
  # `Makefile` for the overall project, not the `Makefile` that is being generated
38
47
  # by this script.`
39
- def make(target)
48
+ def make(env, target)
49
+ puts "Running make #{target} with #{env.inspect}"
40
50
  Dir.chdir(File.expand_path("../..", __dir__)) do
41
- system("make", target, exception: true)
51
+ system(
52
+ env,
53
+ RUBY_PLATFORM.match?(/openbsd|freebsd/) ? "gmake" : "make",
54
+ target,
55
+ exception: true
56
+ )
42
57
  end
43
58
  end
44
59
 
45
- require "rbconfig"
46
-
47
60
  # On non-CRuby we only need the shared library since we'll interface with it
48
61
  # through FFI, so we'll build only that and not the C extension. We also avoid
49
- # `require "mkmf"` as that prepends the LLVM toolchain to PATH on TruffleRuby,
50
- # but we want to use the native toolchain here since libprism is run natively.
62
+ # `require "mkmf"` as that prepends the GraalVM LLVM toolchain to PATH on TruffleRuby < 24.0,
63
+ # but we want to use the system toolchain here since libprism is run natively.
51
64
  if RUBY_ENGINE != "ruby"
52
65
  require 'fileutils'
53
66
  generate_templates
54
- lib_file = "build/libprism.#{RbConfig::CONFIG["SOEXT"]}"
55
- make(lib_file)
67
+ soext = RbConfig::CONFIG["SOEXT"]
68
+ # Pass SOEXT to avoid an extra subprocess just to query that
69
+ lib_file = "build/libprism.#{soext}"
70
+ make({ "SOEXT" => soext }, lib_file)
56
71
  FileUtils.cp "../../#{lib_file}", RbConfig::CONFIG["libdir"]
57
72
  FileUtils.cp "../../jruby-prism.jar", "#{RbConfig::CONFIG['libdir']}/jruby-prism.jar"
58
73
  File.write("Makefile", "all install clean:\n\t@#{RbConfig::CONFIG["NULLCMD"]}\n")
@@ -75,36 +90,42 @@ unless find_header("prism/extension.h", File.expand_path("..", __dir__))
75
90
  raise "prism/extension.h is required"
76
91
  end
77
92
 
78
- # If `--enable-debug-mode-build` is passed to this script or the
79
- # `PRISM_DEBUG_MODE_BUILD` environment variable is defined, we'll build with the
80
- # `PRISM_DEBUG_MODE_BUILD` macro defined. This causes parse functions to
93
+ # If `--enable-build-debug` is passed to this script or the
94
+ # `PRISM_BUILD_DEBUG` environment variable is defined, we'll build with the
95
+ # `PRISM_BUILD_DEBUG` macro defined. This causes parse functions to
81
96
  # duplicate their input so that they have clearly set bounds, which is useful
82
97
  # for finding bugs that cause the parser to read off the end of the input.
83
- if enable_config("debug-mode-build", ENV["PRISM_DEBUG_MODE_BUILD"] || false)
84
- append_cflags("-DPRISM_DEBUG_MODE_BUILD")
98
+ if enable_config("build-debug", ENV["PRISM_BUILD_DEBUG"] || false)
99
+ append_cflags("-DPRISM_BUILD_DEBUG")
100
+ end
101
+
102
+ # If `--enable-build-minimal` is passed to this script or the
103
+ # `PRISM_BUILD_MINIMAL` environment variable is defined, we'll build with the
104
+ # set of defines that comprise the minimal set. This causes the parser to be
105
+ # built with minimal features, necessary for stripping out functionality when
106
+ # the size of the final built artifact is a concern.
107
+ if enable_config("build-minimal", ENV["PRISM_BUILD_MINIMAL"] || false)
108
+ append_cflags("-DPRISM_BUILD_MINIMAL")
85
109
  end
86
110
 
87
111
  # By default, all symbols are hidden in the shared library.
88
112
  append_cflags("-fvisibility=hidden")
89
113
 
90
- # We need to link against the libprism.a archive, which is built by the
91
- # project's `Makefile`. We'll build it if it doesn't exist yet, and then add it
92
- # to `mkmf`'s list of local libraries.
93
- archive_target = "build/libprism.a"
94
- archive_path = File.expand_path("../../#{archive_target}", __dir__)
114
+ def src_list(path)
115
+ srcdir = path.dup
116
+ RbConfig.expand(srcdir) # mutates srcdir :-/
117
+ Dir[File.join(srcdir, "*.{#{SRC_EXT.join(%q{,})}}")]
118
+ end
119
+
120
+ def add_libprism_source(path)
121
+ $VPATH << path
122
+ src_list path
123
+ end
95
124
 
96
- make(archive_target) unless File.exist?(archive_path)
97
- $LOCAL_LIBS << " #{archive_path}"
125
+ $srcs = src_list("$(srcdir)") +
126
+ add_libprism_source("$(srcdir)/../../src") +
127
+ add_libprism_source("$(srcdir)/../../src/util")
98
128
 
99
129
  # Finally, we'll create the `Makefile` that is going to be used to configure and
100
130
  # build the C extension.
101
131
  create_makefile("prism/prism")
102
-
103
- # Now that the `Makefile` for the C extension is built, we'll append on an extra
104
- # rule that dictates that the extension should be rebuilt if the archive is
105
- # updated.
106
- File.open("Makefile", "a") do |mf|
107
- mf.puts
108
- mf.puts("# Automatically rebuild the extension if libprism.a changed")
109
- mf.puts("$(TARGET_SO): $(LOCAL_LIBS)")
110
- end