Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork59
Comparing changes
Open a pull request
base repository:ruby-syntax-tree/syntax_tree
Uh oh!
There was an error while loading.Please reload this page.
base:v5.1.0
head repository:ruby-syntax-tree/syntax_tree
Uh oh!
There was an error while loading.Please reload this page.
compare:v5.2.0
- 10commits
- 27files changed
- 3contributors
Commits on Dec 29, 2022
- kddnewton committed
Dec 29, 2022 Merge pull request#239from ruby-syntax-tree/evaluate
Evaluate YARV bytecode
kddnewton authoredDec 29, 2022
Commits on Jan 2, 2023
Bump minitest from 5.16.3 to 5.17.0
Bumps [minitest](https://github.com/seattlerb/minitest) from 5.16.3 to 5.17.0.- [Release notes](https://github.com/seattlerb/minitest/releases)- [Changelog](https://github.com/minitest/minitest/blob/master/History.rdoc)- [Commits](minitest/minitest@v5.16.3...v5.17.0)---updated-dependencies:- dependency-name: minitest dependency-type: direct:development update-type: version-update:semver-minor...Signed-off-by: dependabot[bot] <support@github.com>
dependabot[bot] authoredJan 2, 2023 Merge pull request#241from ruby-syntax-tree/dependabot/bundler/mini…
…test-5.17.0Bump minitest from 5.16.3 to 5.17.0
github-actions[bot] authoredJan 2, 2023
Commits on Jan 4, 2023
- kddnewton committed
Jan 4, 2023 Bump dependabot/fetch-metadata from 1.3.3 to 1.3.5
Bumps [dependabot/fetch-metadata](https://github.com/dependabot/fetch-metadata) from 1.3.3 to 1.3.5.- [Release notes](https://github.com/dependabot/fetch-metadata/releases)- [Commits](dependabot/fetch-metadata@v1.3.3...v1.3.5)---updated-dependencies:- dependency-name: dependabot/fetch-metadata dependency-type: direct:production update-type: version-update:semver-patch...Signed-off-by: dependabot[bot] <support@github.com>
dependabot[bot] authoredJan 4, 2023 Merge pull request#246from ruby-syntax-tree/dependabot/github_actio…
…ns/dependabot/fetch-metadata-1.3.5Bump dependabot/fetch-metadata from 1.3.3 to 1.3.5
github-actions[bot] authoredJan 4, 2023 Leave parentheses in place on method calls
Note that this explicitly leaves parentheses in place even if they areempty. There are two reasons we would need to do this. The first is ifwe're calling something that looks like a constant, as in: Foo()In this case if we remove the parentheses then this becomes a constantreference and not a method call. The second is if we're calling amethod that is the same name as a local variable that is in scope, asin: foo = foo()In this case we have to keep the parentheses or else it treats thislike assigning nil to the local variable. Note that we could attemptto be smarter about this by tracking the local variables that are inscope, but for now it's simpler and more efficient to just leave theparentheses in place.
kddnewton committedJan 4, 2023 Merge pull request#248from ruby-syntax-tree/leave-parens
Leave parentheses in place on method calls
kddnewton authoredJan 4, 2023 - kddnewton committed
Jan 4, 2023
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:git diff v5.1.0...v5.2.0
Uh oh!
There was an error while loading.Please reload this page.