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: d15ad1d3cf25
Choose a base ref
...
head repository: jruby/jruby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ed283cffd754
Choose a head ref
  • 3 commits
  • 2 files changed
  • 1 contributor

Commits on May 8, 2015

  1. Copy the full SHA
    55b57d5 View commit details
  2. Copy the full SHA
    3f7147a View commit details
  3. Copy the full SHA
    ed283cf View commit details
Showing with 4 additions and 3 deletions.
  1. +3 −2 tool/jt.rb
  2. +1 −1 truffle/src/main/java/org/jruby/truffle/nodes/dispatch/DispatchNode.java
5 changes: 3 additions & 2 deletions tool/jt.rb
Original file line number Diff line number Diff line change
@@ -149,8 +149,9 @@ def help
puts ' --asm show assembly (implies --graal)'
puts ' --server run an instrumentation server on port 8080'
puts ' --igv make sure IGV is running and dump Graal graphs after partial escape (implies --graal)'
puts ' --jdebug run a JDWP debug server on 8000'
puts 'jt e 14 + 2 evaluate an expression'
puts 'jt puts 14 + 2 evaluate and print an expression'
puts 'jt print 14 + 2 evaluate and print an expression'
puts 'jt test run all mri tests and specs'
puts 'jt test mri run mri tests'
puts 'jt test specs run all specs'
@@ -247,7 +248,7 @@ def e(*args)
run '-e', args.join(' ')
end

def puts(*args)
def print(*args)
e 'puts', *args
end

Original file line number Diff line number Diff line change
@@ -94,7 +94,7 @@ protected InternalMethod lookup(
// Check for methods that are explicitly undefined

if (method.isUndefined()) {
throw new RaiseException(getContext().getCoreLibrary().noMethodErrorOnReceiver(name, receiver, this));
return null;
}

// Check visibility