Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jruby/jruby
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f5f5388f5350
Choose a base ref
...
head repository: jruby/jruby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 29db9daef472
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Jan 5, 2016

  1. Copy the full SHA
    be15fc4 View commit details
  2. 7
    Copy the full SHA
    29db9da View commit details
Showing with 4 additions and 4 deletions.
  1. +3 −3 spec/truffle/tags/language/variables_tags.txt
  2. +1 −1 tool/jt.rb
6 changes: 3 additions & 3 deletions spec/truffle/tags/language/variables_tags.txt
Original file line number Diff line number Diff line change
@@ -3,9 +3,6 @@ fails:Multiple assignment with a single RHS value raises a TypeError of #to_ary
fails:Multiple assignment with a single RHS value raises a TypeError if #to_ary does not return an Array
fails:Multiple assignment with a single RHS value assigns an Array when the RHS is an Array subclass
fails:Multiple assignment with a single splatted RHS value calls #to_a to convert nil to an empty Array
fails:Multiple assignment with a MRHS value raises a TypeError if #to_ary does not return an Array
fails:Multiple assignment with a MRHS value calls #to_ary to convert a splatted Object when the position receiving the value is a multiple assignment
fails:Multiple assignment with a MRHS value does not call #to_ary to convert a splatted Object when the position receiving the value is a simple variable
fails:Multiple assignment with a single RHS value calls #to_ary to convert an Object RHS when assigning a simple MLHS
fails:Multiple assignment with a single RHS value calls #to_ary if it is private
fails:Multiple assignment with a single RHS value does not call #to_ary if #respond_to? returns false
@@ -25,6 +22,9 @@ fails:Multiple assignment with a single splatted RHS value calls #to_a to conver
fails:Multiple assignment with a single splatted RHS value assigns a MLHS with leading splat
fails:Multiple assignment with a single splatted RHS value calls #to_a to convert an Object RHS with MLHS
fails:Multiple assignment with a single splatted RHS value does not mutate a RHS Array
fails:Multiple assignment with a MRHS value raises a TypeError if #to_ary does not return an Array
fails:Multiple assignment with a MRHS value calls #to_ary to convert a splatted Object when the position receiving the value is a multiple assignment
fails:Multiple assignment with a MRHS value does not call #to_ary to convert a splatted Object when the position receiving the value is a simple variable
fails:Multiple assignment with a MRHS value calls #to_ary to convert an Object when the position receiving the value is a multiple assignment
fails:Multiple assignment with a MRHS value raises a TypeError if #to_ary does not return an Array
fails:Multiple assignment with a MRHS value calls #to_a to convert a splatted Object value in a MRHS
2 changes: 1 addition & 1 deletion tool/jt.rb
Original file line number Diff line number Diff line change
@@ -160,7 +160,7 @@ def sh(*args)
end

def mvn(*args)
sh './mvnw', *args
sh './mvnw', *(['-q'] + args)
end

def mspec(command, *args)