prism 1.2.0 → 1.4.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +46 -1
- data/Makefile +1 -1
- data/config.yml +429 -2
- data/docs/build_system.md +8 -11
- data/docs/releasing.md +1 -1
- data/docs/relocation.md +34 -0
- data/docs/ruby_api.md +1 -1
- data/ext/prism/api_node.c +1824 -1305
- data/ext/prism/extconf.rb +13 -36
- data/ext/prism/extension.c +298 -109
- data/ext/prism/extension.h +4 -4
- data/include/prism/ast.h +442 -2
- data/include/prism/defines.h +26 -8
- data/include/prism/options.h +47 -1
- data/include/prism/util/pm_buffer.h +10 -0
- data/include/prism/version.h +2 -2
- data/include/prism.h +51 -4
- data/lib/prism/dot_visitor.rb +26 -0
- data/lib/prism/dsl.rb +14 -6
- data/lib/prism/ffi.rb +93 -28
- data/lib/prism/inspect_visitor.rb +4 -1
- data/lib/prism/node.rb +1886 -105
- data/lib/prism/parse_result/errors.rb +1 -1
- data/lib/prism/parse_result/newlines.rb +1 -1
- data/lib/prism/parse_result.rb +54 -2
- data/lib/prism/polyfill/append_as_bytes.rb +15 -0
- data/lib/prism/reflection.rb +4 -4
- data/lib/prism/relocation.rb +504 -0
- data/lib/prism/serialize.rb +1252 -765
- data/lib/prism/string_query.rb +30 -0
- data/lib/prism/translation/parser/builder.rb +61 -0
- data/lib/prism/translation/parser/compiler.rb +228 -162
- data/lib/prism/translation/parser/lexer.rb +435 -61
- data/lib/prism/translation/parser.rb +51 -3
- data/lib/prism/translation/parser35.rb +12 -0
- data/lib/prism/translation/ripper.rb +13 -3
- data/lib/prism/translation/ruby_parser.rb +17 -7
- data/lib/prism/translation.rb +1 -0
- data/lib/prism.rb +9 -7
- data/prism.gemspec +11 -1
- data/rbi/prism/dsl.rbi +10 -7
- data/rbi/prism/node.rbi +44 -17
- data/rbi/prism/parse_result.rbi +17 -0
- data/rbi/prism/string_query.rbi +12 -0
- data/rbi/prism/translation/parser35.rbi +6 -0
- data/rbi/prism.rbi +39 -36
- data/sig/prism/dsl.rbs +6 -4
- data/sig/prism/node.rbs +29 -15
- data/sig/prism/parse_result.rbs +10 -0
- data/sig/prism/relocation.rbs +185 -0
- data/sig/prism/serialize.rbs +4 -2
- data/sig/prism/string_query.rbs +11 -0
- data/sig/prism.rbs +22 -1
- data/src/diagnostic.c +2 -2
- data/src/node.c +39 -0
- data/src/options.c +31 -0
- data/src/prettyprint.c +62 -0
- data/src/prism.c +738 -199
- data/src/regexp.c +7 -3
- data/src/serialize.c +18 -0
- data/src/static_literals.c +1 -1
- data/src/util/pm_buffer.c +40 -0
- data/src/util/pm_char.c +1 -1
- data/src/util/pm_constant_pool.c +6 -2
- data/src/util/pm_string.c +1 -0
- data/src/util/pm_strncasecmp.c +13 -1
- metadata +13 -7
data/ext/prism/extconf.rb
CHANGED
@@ -70,26 +70,6 @@ if RUBY_ENGINE != "ruby"
|
|
70
70
|
return
|
71
71
|
end
|
72
72
|
|
73
|
-
# We're going to need to run `make` using prism's `Makefile`.
|
74
|
-
# We want to use the same toolchain (compiler, flags, etc) to compile libprism.a and
|
75
|
-
# the C extension since they will be linked together.
|
76
|
-
# The C extension uses RbConfig, which contains values from the toolchain that built the running Ruby.
|
77
|
-
env = RbConfig::CONFIG.slice("SOEXT", "CPPFLAGS", "CFLAGS", "CC", "AR", "ARFLAGS", "MAKEDIRS", "RMALL")
|
78
|
-
|
79
|
-
# It's possible that the Ruby that is being run wasn't actually compiled on this
|
80
|
-
# machine, in which case parts of RbConfig might be incorrect. In this case
|
81
|
-
# we'll need to do some additional checks and potentially fall back to defaults.
|
82
|
-
if env.key?("CC") && !File.exist?(env["CC"])
|
83
|
-
env.delete("CC")
|
84
|
-
env.delete("CFLAGS")
|
85
|
-
env.delete("CPPFLAGS")
|
86
|
-
end
|
87
|
-
|
88
|
-
if env.key?("AR") && !File.exist?(env["AR"])
|
89
|
-
env.delete("AR")
|
90
|
-
env.delete("ARFLAGS")
|
91
|
-
end
|
92
|
-
|
93
73
|
require "mkmf"
|
94
74
|
|
95
75
|
# First, ensure that we can find the header for the prism library.
|
@@ -127,24 +107,21 @@ end
|
|
127
107
|
# By default, all symbols are hidden in the shared library.
|
128
108
|
append_cflags("-fvisibility=hidden")
|
129
109
|
|
130
|
-
|
131
|
-
|
132
|
-
#
|
133
|
-
|
134
|
-
|
110
|
+
def src_list(path)
|
111
|
+
srcdir = path.dup
|
112
|
+
RbConfig.expand(srcdir) # mutates srcdir :-/
|
113
|
+
Dir[File.join(srcdir, "*.{#{SRC_EXT.join(%q{,})}}")]
|
114
|
+
end
|
135
115
|
|
136
|
-
|
137
|
-
$
|
116
|
+
def add_libprism_source(path)
|
117
|
+
$VPATH << path
|
118
|
+
src_list path
|
119
|
+
end
|
120
|
+
|
121
|
+
$srcs = src_list("$(srcdir)") +
|
122
|
+
add_libprism_source("$(srcdir)/../../src") +
|
123
|
+
add_libprism_source("$(srcdir)/../../src/util")
|
138
124
|
|
139
125
|
# Finally, we'll create the `Makefile` that is going to be used to configure and
|
140
126
|
# build the C extension.
|
141
127
|
create_makefile("prism/prism")
|
142
|
-
|
143
|
-
# Now that the `Makefile` for the C extension is built, we'll append on an extra
|
144
|
-
# rule that dictates that the extension should be rebuilt if the archive is
|
145
|
-
# updated.
|
146
|
-
File.open("Makefile", "a") do |mf|
|
147
|
-
mf.puts
|
148
|
-
mf.puts("# Automatically rebuild the extension if libprism.a changed")
|
149
|
-
mf.puts("$(TARGET_SO): $(LOCAL_LIBS)")
|
150
|
-
end
|