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

Commits on Apr 26, 2016

  1. Copy the full SHA
    06b8e76 View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    97a9221 View commit details
2 changes: 1 addition & 1 deletion truffle/pom.rb
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@

properties( 'polyglot.dump.pom' => 'pom.xml',
'polyglot.dump.readonly' => true,
'truffle.version' => '0.12',
'truffle.version' => '0.13',
'jruby.basedir' => '${basedir}/..' )

jar 'org.yaml:snakeyaml:1.14'
2 changes: 1 addition & 1 deletion truffle/pom.xml
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ DO NOT MODIFIY - GENERATED CODE
<jruby.basedir>${basedir}/..</jruby.basedir>
<polyglot.dump.readonly>true</polyglot.dump.readonly>
<polyglot.dump.pom>pom.xml</polyglot.dump.pom>
<truffle.version>0.12</truffle.version>
<truffle.version>0.13</truffle.version>
</properties>
<dependencies>
<dependency>
Original file line number Diff line number Diff line change
@@ -158,6 +158,10 @@ public RubyContext getContext() {

// Source section

public void unsafeSetSourceSection(SourceSection sourceSection) {
this.sourceSection = sourceSection;
}

@Override
public SourceSection getSourceSection() {
return sourceSection;
Original file line number Diff line number Diff line change
@@ -192,8 +192,7 @@ public static RubyNode createCheckArityNode(RubyContext context, SourceSection s
}

protected void setSourceSection(RubyNode node, SourceSection sourceSection) {
node.clearSourceSection();
node.assignSourceSection(sourceSection);
node.unsafeSetSourceSection(sourceSection);
}

}