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/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
|
10
|
-
Enable debug
|
11
|
-
You may also
|
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
|
-
|
19
|
-
Equivalent to `--enable-debug
|
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(
|
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
|
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
|
-
|
55
|
-
|
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
|
79
|
-
# `
|
80
|
-
# `
|
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
|
84
|
-
append_cflags("-
|
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
|
-
|
91
|
-
|
92
|
-
#
|
93
|
-
|
94
|
-
|
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
|
-
|
97
|
-
$
|
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
|