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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a0209a58426470fc6afedb5922c9bf9264cb9ccd2debbef68fb1a307a4d1be78
|
4
|
+
data.tar.gz: 491a11ab3d9d840f4ac228e8b79e85ddb24ae1f82b3cee7cbdb1003bea9f33f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 30b9cb40262daf924f047034c6314b418c367691eccc188acd08328bd92e6a51d3818a91c3d17fb5dc3f159129186ef6c4bd7bfbe815b9c8f268fa9b938fd1ac
|
7
|
+
data.tar.gz: a1b9ab207e98c779b0d371f2f14e6c5fb8315273af7518bc8e8135ba3dff4f1385787e169a4e4c146aa1ea7c10f6fce4f82d37958f88e8f68f1e8dabe54115bf
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,49 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
|
9
|
+
## [1.4.0] - 2025-03-18
|
10
|
+
|
11
|
+
### Added
|
12
|
+
|
13
|
+
- Support `3.5` as a version option.
|
14
|
+
- Many, many compatibility fixes for the parser translation layer.
|
15
|
+
- Handle escapes in named capture names.
|
16
|
+
- The `freeze` option is added to the various `Prism::` APIs to deeply freeze the AST.
|
17
|
+
- Properly support `it` for the parser and ruby_parser translation layers.
|
18
|
+
- Track the `then` keyword on `rescue` nodes.
|
19
|
+
- Add a `multiple_statements?` flag to parentheses nodes to support desired `defined?` behavior.
|
20
|
+
|
21
|
+
### Changed
|
22
|
+
|
23
|
+
- The strings used in the AST are now frozen.
|
24
|
+
- Fixed handling escaped characters after control sequences in character literals.
|
25
|
+
- Fix reading off the end of an unterminated global variable.
|
26
|
+
- Raise a syntax error for defining `[]=` with endless method syntax.
|
27
|
+
- Increase value of `PRISM_DEPTH_MAXIMUM` to `10000`.
|
28
|
+
- Freeze `Prism::VERSION`.
|
29
|
+
- Fix up rescue modifier precedence.
|
30
|
+
|
31
|
+
## [1.3.0] - 2024-12-21
|
32
|
+
|
33
|
+
### Added
|
34
|
+
|
35
|
+
- Introduce `Prism::StringQuery`.
|
36
|
+
- Introduce `Prism::Relocation`.
|
37
|
+
- Track `do` keyword for `WhileNode` and `UntilNode`.
|
38
|
+
- Change the way the gem is built to rely on `mkmf` instead of `make`.
|
39
|
+
- Lots more documentation on node fields.
|
40
|
+
|
41
|
+
### Changed
|
42
|
+
|
43
|
+
- Properly add an error for `def @foo; end`.
|
44
|
+
- Properly add an error for `foo(**, *)`.
|
45
|
+
- Fix up regression in string parsing in `RubyParser` translation.
|
46
|
+
- Reject invalid dot method call after match expression.
|
47
|
+
- Reject invalid operator after match expression.
|
48
|
+
- Fix up %-literals delimited by newlines.
|
49
|
+
- Properly add an error for `-> { _1; -> { _1 } }`.
|
50
|
+
- Reject blocks and keywords in index writes.
|
51
|
+
|
9
52
|
## [1.2.0] - 2024-10-10
|
10
53
|
|
11
54
|
### Added
|
@@ -606,7 +649,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
|
|
606
649
|
|
607
650
|
- ๐ Initial release! ๐
|
608
651
|
|
609
|
-
[unreleased]: https://github.com/ruby/prism/compare/v1.
|
652
|
+
[unreleased]: https://github.com/ruby/prism/compare/v1.4.0...HEAD
|
653
|
+
[1.4.0]: https://github.com/ruby/prism/compare/v1.3.0...v1.4.0
|
654
|
+
[1.3.0]: https://github.com/ruby/prism/compare/v1.2.0...v1.3.0
|
610
655
|
[1.2.0]: https://github.com/ruby/prism/compare/v1.1.0...v1.2.0
|
611
656
|
[1.1.0]: https://github.com/ruby/prism/compare/v1.0.0...v1.1.0
|
612
657
|
[1.0.0]: https://github.com/ruby/prism/compare/v0.30.0...v1.0.0
|
data/Makefile
CHANGED
@@ -11,7 +11,7 @@ FUZZ_OUTPUT_DIR = $(CURDIR)/fuzz/output
|
|
11
11
|
SOEXT ?= $(shell ruby -e 'puts RbConfig::CONFIG["SOEXT"]')
|
12
12
|
|
13
13
|
CPPFLAGS := -Iinclude $(CPPFLAGS)
|
14
|
-
CFLAGS := -g -O2 -std=c99 -Wall -Werror -Wextra -Wpedantic -Wundef -Wconversion -Wno-missing-braces -fPIC -fvisibility=hidden $(CFLAGS)
|
14
|
+
CFLAGS := -g -O2 -std=c99 -Wall -Werror -Wextra -Wpedantic -Wundef -Wconversion -Wno-missing-braces -fPIC -fvisibility=hidden -Wimplicit-fallthrough $(CFLAGS)
|
15
15
|
CC ?= cc
|
16
16
|
AR ?= ar
|
17
17
|
WASI_SDK_PATH := /opt/wasi-sdk
|