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

Commits on Nov 5, 2014

  1. Copy the full SHA
    a17b18d View commit details
  2. [Truffle] Passing spec.

    eregon committed Nov 5, 2014
    Copy the full SHA
    2af59d3 View commit details
Showing with 3 additions and 1 deletion.
  1. +3 −0 core/src/main/java/org/jruby/truffle/runtime/core/RubyBasicObject.java
  2. +0 −1 spec/truffle/tags/language/metaclass_tags.txt
Original file line number Diff line number Diff line change
@@ -28,8 +28,11 @@
*/
public class RubyBasicObject extends ObjectStorage {

/** The class of the object, not a singleton class. */
@CompilationFinal protected RubyClass logicalClass;
/** Either the singleton class if it exists or the logicalClass. */
@CompilationFinal protected RubyClass metaClass;

protected long objectID = -1;
public boolean hasPrivateLayout = false;

1 change: 0 additions & 1 deletion spec/truffle/tags/language/metaclass_tags.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
fails:A constant on a metaclass can be accessed via const_get
fails(inherited):calling methods on the metaclass calls a method defined on the metaclass of the metaclass
fails:A constant on a metaclass is preserved when the object is cloned