Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump test/fixtures/prism from a4e164e to 8e7d126 #2151

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/fixtures/prism
Submodule prism updated 72 files
+2 −1 .github/workflows/main.yml
+22 −1 CHANGELOG.md
+8 −10 Gemfile
+3 −1 Gemfile.lock
+1 −0 README.md
+14 −0 Rakefile
+2 −1 config.yml
+1 −1 docs/fuzzing.md
+22 −0 docs/ripper_translation.md
+1 −1 ext/prism/extension.h
+16 −3 fuzz/regexp.c
+2 −1 gemfiles/2.7/Gemfile
+4 −2 gemfiles/2.7/Gemfile.lock
+2 −1 gemfiles/3.0/Gemfile
+6 −4 gemfiles/3.0/Gemfile.lock
+2 −1 gemfiles/3.1/Gemfile
+6 −4 gemfiles/3.1/Gemfile.lock
+2 −1 gemfiles/3.2/Gemfile
+6 −4 gemfiles/3.2/Gemfile.lock
+2 −1 gemfiles/3.3/Gemfile
+6 −4 gemfiles/3.3/Gemfile.lock
+2 −1 gemfiles/3.4/Gemfile
+6 −4 gemfiles/3.4/Gemfile.lock
+2 −2 gemfiles/jruby/Gemfile.lock
+2 −2 gemfiles/truffleruby/Gemfile.lock
+13 −13 gemfiles/typecheck/Gemfile.lock
+17 −8 include/prism/regexp.h
+0 −44 include/prism/util/pm_string_list.h
+2 −2 include/prism/version.h
+1 −1 javascript/package.json
+8 −4 lib/prism/node_ext.rb
+1 −0 lib/prism/parse_result/newlines.rb
+89 −49 lib/prism/translation/parser/compiler.rb
+1 −3 prism.gemspec
+2 −0 rakelib/check_manifest.rake
+1 −0 rakelib/seattlerb.rake
+1 −0 rakelib/test.rake
+2 −4 rakelib/typecheck.rake
+1 −0 rakelib/unparser.rake
+1 −1 rakelib/whitequark.rake
+2 −2 rust/Cargo.lock
+1 −1 rust/ruby-prism-sys/Cargo.toml
+1 −1 rust/ruby-prism-sys/tests/utils_tests.rs
+2 −2 rust/ruby-prism/Cargo.toml
+31 −0 rust/ruby-prism/src/lib.rs
+105 −0 sample/find_calls.rb
+100 −0 sample/find_comments.rb
+84 −0 sample/locate_nodes.rb
+63 −0 sample/visit_nodes.rb
+439 −312 src/prism.c
+133 −68 src/regexp.c
+0 −28 src/util/pm_string_list.c
+10 −0 suppressions/ruby-3.supp
+1 −1 templates/java/org/prism/Loader.java.erb
+1 −1 templates/javascript/src/deserialize.js.erb
+1 −1 templates/lib/prism/serialize.rb.erb
+3 −2 templates/src/diagnostic.c.erb
+14 −8 test/prism/errors_test.rb
+1 −1 test/prism/fixtures/seattlerb/pct_Q_backslash_nl.txt
+7 −0 test/prism/fixtures/whitequark/method_definition_in_while_cond.txt
+66 −0 test/prism/onigmo_test.rb
+23 −22 test/prism/ruby/parser_test.rb
+0 −61 test/prism/snapshots/seattlerb/dasgn_icky2.txt
+2 −2 test/prism/snapshots/seattlerb/pct_Q_backslash_nl.txt
+0 −16 test/prism/snapshots/seattlerb/yield_arg.txt
+0 −224 test/prism/snapshots/seattlerb/yield_call_assocs.txt
+0 −10 test/prism/snapshots/seattlerb/yield_empty_parens.txt
+0 −56 test/prism/snapshots/unparser/corpus/literal/yield.txt
+0 −195 test/prism/snapshots/whitequark/args_assocs.txt
+0 −195 test/prism/snapshots/whitequark/args_assocs_legacy.txt
+199 −0 test/prism/snapshots/whitequark/method_definition_in_while_cond.txt
+0 −51 test/prism/snapshots/whitequark/yield.txt
Loading