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.
Files changed (68) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +46 -1
  3. data/Makefile +1 -1
  4. data/config.yml +429 -2
  5. data/docs/build_system.md +8 -11
  6. data/docs/releasing.md +1 -1
  7. data/docs/relocation.md +34 -0
  8. data/docs/ruby_api.md +1 -1
  9. data/ext/prism/api_node.c +1824 -1305
  10. data/ext/prism/extconf.rb +13 -36
  11. data/ext/prism/extension.c +298 -109
  12. data/ext/prism/extension.h +4 -4
  13. data/include/prism/ast.h +442 -2
  14. data/include/prism/defines.h +26 -8
  15. data/include/prism/options.h +47 -1
  16. data/include/prism/util/pm_buffer.h +10 -0
  17. data/include/prism/version.h +2 -2
  18. data/include/prism.h +51 -4
  19. data/lib/prism/dot_visitor.rb +26 -0
  20. data/lib/prism/dsl.rb +14 -6
  21. data/lib/prism/ffi.rb +93 -28
  22. data/lib/prism/inspect_visitor.rb +4 -1
  23. data/lib/prism/node.rb +1886 -105
  24. data/lib/prism/parse_result/errors.rb +1 -1
  25. data/lib/prism/parse_result/newlines.rb +1 -1
  26. data/lib/prism/parse_result.rb +54 -2
  27. data/lib/prism/polyfill/append_as_bytes.rb +15 -0
  28. data/lib/prism/reflection.rb +4 -4
  29. data/lib/prism/relocation.rb +504 -0
  30. data/lib/prism/serialize.rb +1252 -765
  31. data/lib/prism/string_query.rb +30 -0
  32. data/lib/prism/translation/parser/builder.rb +61 -0
  33. data/lib/prism/translation/parser/compiler.rb +228 -162
  34. data/lib/prism/translation/parser/lexer.rb +435 -61
  35. data/lib/prism/translation/parser.rb +51 -3
  36. data/lib/prism/translation/parser35.rb +12 -0
  37. data/lib/prism/translation/ripper.rb +13 -3
  38. data/lib/prism/translation/ruby_parser.rb +17 -7
  39. data/lib/prism/translation.rb +1 -0
  40. data/lib/prism.rb +9 -7
  41. data/prism.gemspec +11 -1
  42. data/rbi/prism/dsl.rbi +10 -7
  43. data/rbi/prism/node.rbi +44 -17
  44. data/rbi/prism/parse_result.rbi +17 -0
  45. data/rbi/prism/string_query.rbi +12 -0
  46. data/rbi/prism/translation/parser35.rbi +6 -0
  47. data/rbi/prism.rbi +39 -36
  48. data/sig/prism/dsl.rbs +6 -4
  49. data/sig/prism/node.rbs +29 -15
  50. data/sig/prism/parse_result.rbs +10 -0
  51. data/sig/prism/relocation.rbs +185 -0
  52. data/sig/prism/serialize.rbs +4 -2
  53. data/sig/prism/string_query.rbs +11 -0
  54. data/sig/prism.rbs +22 -1
  55. data/src/diagnostic.c +2 -2
  56. data/src/node.c +39 -0
  57. data/src/options.c +31 -0
  58. data/src/prettyprint.c +62 -0
  59. data/src/prism.c +738 -199
  60. data/src/regexp.c +7 -3
  61. data/src/serialize.c +18 -0
  62. data/src/static_literals.c +1 -1
  63. data/src/util/pm_buffer.c +40 -0
  64. data/src/util/pm_char.c +1 -1
  65. data/src/util/pm_constant_pool.c +6 -2
  66. data/src/util/pm_string.c +1 -0
  67. data/src/util/pm_strncasecmp.c +13 -1
  68. metadata +13 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f16f842a06eec8141246c60a39f509a59817de34ab4be3a33502ada040ac1602
4
- data.tar.gz: 38bd30b4ba63fe67892a0138be5b7b2c84fb6bd66e011871a07ee453be7b0aec
3
+ metadata.gz: a0209a58426470fc6afedb5922c9bf9264cb9ccd2debbef68fb1a307a4d1be78
4
+ data.tar.gz: 491a11ab3d9d840f4ac228e8b79e85ddb24ae1f82b3cee7cbdb1003bea9f33f2
5
5
  SHA512:
6
- metadata.gz: 9877dc80270515e91c5357418a67721fa832c6de44d755047f576d69a3b09129d64da19e5ac767d184df74afe40982f56c88be3851ce7fc7c99c1d0bbf15ec77
7
- data.tar.gz: 4578c2f1e2e934f763d6c55ae84dc076b0676ac0560c13364db1ade75425da76d64b7a4cf8fb07ea723568fbfc58c20fb8055e9dec364ac5da05765d26398d39
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.2.0...HEAD
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