Skip to content

Commit 2b4221c

Browse files
committed
Multi-dim REPR API correctoins.
1 parent 79a13b0 commit 2b4221c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/vm/jvm/runtime/org/perl6/nqp/sixmodel/SixModelObject.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,16 +124,16 @@ public void shift_native(ThreadContext tc) {
124124
public void splice(ThreadContext tc, SixModelObject from, long offset, long count) {
125125
throw ExceptionHandling.dieInternal(tc, this.st.REPR.name + " representation does not implement splice");
126126
}
127-
public void at_pos_boxed_multidim(ThreadContext tc, long[] indices) {
127+
public SixModelObject at_pos_multidim_boxed(ThreadContext tc, long[] indices) {
128128
throw ExceptionHandling.dieInternal(tc, this.st.REPR.name + " representation does not implement at_pos_boxed_multidim");
129129
}
130130
public void at_pos_multidim_native(ThreadContext tc, long[] indices) {
131131
throw ExceptionHandling.dieInternal(tc, this.st.REPR.name + " representation does not implement at_pos_multidim_native");
132132
}
133-
public void bind_pos_boxed_multidim(ThreadContext tc, long[] indices, SixModelObject value) {
133+
public void bind_pos_multidim_boxed(ThreadContext tc, long[] indices, SixModelObject value) {
134134
throw ExceptionHandling.dieInternal(tc, this.st.REPR.name + " representation does not implement bind_pos_boxed_multidim");
135135
}
136-
public void bind_pos_native_multidim(ThreadContext tc, long[] indices) {
136+
public void bind_pos_multidim_native(ThreadContext tc, long[] indices) {
137137
throw ExceptionHandling.dieInternal(tc, this.st.REPR.name + " representation does not implement bind_pos_native_multidim");
138138
}
139139
public long[] dimensions(ThreadContext tc) {

0 commit comments

Comments
 (0)