Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Correct inheritance for lex ref types.
  • Loading branch information
jnthn committed Feb 28, 2015
1 parent 47a347c commit 8bebd81
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -5,7 +5,7 @@
import org.perl6.nqp.sixmodel.SixModelObject;

/* Integer native lexical reference. */
public class NativeRefInstanceIntLex extends SixModelObject {
public class NativeRefInstanceIntLex extends NativeRefInstance {
public long[] lexicals;
public int idx;

Expand Down
Expand Up @@ -5,7 +5,7 @@
import org.perl6.nqp.sixmodel.SixModelObject;

/* Integer native lexical reference. */
public class NativeRefInstanceNumLex extends SixModelObject {
public class NativeRefInstanceNumLex extends NativeRefInstance {
public double[] lexicals;
public int idx;

Expand Down
Expand Up @@ -5,7 +5,7 @@
import org.perl6.nqp.sixmodel.SixModelObject;

/* Integer native lexical reference. */
public class NativeRefInstanceStrLex extends SixModelObject {
public class NativeRefInstanceStrLex extends NativeRefInstance {
public String[] lexicals;
public int idx;

Expand Down

0 comments on commit 8bebd81

Please sign in to comment.