Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Multi-dim REPR API correctoins.
  • Loading branch information
jnthn committed Jul 10, 2015
1 parent 79a13b0 commit 2b4221c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/vm/jvm/runtime/org/perl6/nqp/sixmodel/SixModelObject.java
Expand Up @@ -124,16 +124,16 @@ public void shift_native(ThreadContext tc) {
public void splice(ThreadContext tc, SixModelObject from, long offset, long count) {
throw ExceptionHandling.dieInternal(tc, this.st.REPR.name + " representation does not implement splice");
}
public void at_pos_boxed_multidim(ThreadContext tc, long[] indices) {
public SixModelObject at_pos_multidim_boxed(ThreadContext tc, long[] indices) {
throw ExceptionHandling.dieInternal(tc, this.st.REPR.name + " representation does not implement at_pos_boxed_multidim");
}
public void at_pos_multidim_native(ThreadContext tc, long[] indices) {
throw ExceptionHandling.dieInternal(tc, this.st.REPR.name + " representation does not implement at_pos_multidim_native");
}
public void bind_pos_boxed_multidim(ThreadContext tc, long[] indices, SixModelObject value) {
public void bind_pos_multidim_boxed(ThreadContext tc, long[] indices, SixModelObject value) {
throw ExceptionHandling.dieInternal(tc, this.st.REPR.name + " representation does not implement bind_pos_boxed_multidim");
}
public void bind_pos_native_multidim(ThreadContext tc, long[] indices) {
public void bind_pos_multidim_native(ThreadContext tc, long[] indices) {
throw ExceptionHandling.dieInternal(tc, this.st.REPR.name + " representation does not implement bind_pos_native_multidim");
}
public long[] dimensions(ThreadContext tc) {
Expand Down

0 comments on commit 2b4221c

Please sign in to comment.