@@ -62,4 +62,32 @@ protected int indicesToFlatIndex(ThreadContext tc, long[] indices) {
62
62
dimensions .length , indices .length ));
63
63
}
64
64
}
65
+
66
+ public void push_boxed (ThreadContext tc , SixModelObject value ) {
67
+ throw ExceptionHandling .dieInternal (tc , "Cannot push onto a fixed dimension array" );
68
+ }
69
+ public void push_native (ThreadContext tc ) {
70
+ throw ExceptionHandling .dieInternal (tc , "Cannot push onto a fixed dimension array" );
71
+ }
72
+ public SixModelObject pop_boxed (ThreadContext tc ) {
73
+ throw ExceptionHandling .dieInternal (tc , "Cannot pop a fixed dimension array" );
74
+ }
75
+ public void pop_native (ThreadContext tc ) {
76
+ throw ExceptionHandling .dieInternal (tc , "Cannot pop a fixed dimension array" );
77
+ }
78
+ public void unshift_boxed (ThreadContext tc , SixModelObject value ) {
79
+ throw ExceptionHandling .dieInternal (tc , "Cannot unshift onto a fixed dimension array" );
80
+ }
81
+ public void unshift_native (ThreadContext tc ) {
82
+ throw ExceptionHandling .dieInternal (tc , "Cannot unshift onto a fixed dimension array" );
83
+ }
84
+ public SixModelObject shift_boxed (ThreadContext tc ) {
85
+ throw ExceptionHandling .dieInternal (tc , "Cannot shift a fixed dimension array" );
86
+ }
87
+ public void shift_native (ThreadContext tc ) {
88
+ throw ExceptionHandling .dieInternal (tc , "Cannot shift a fixed dimension array" );
89
+ }
90
+ public void splice (ThreadContext tc , SixModelObject from , long offset , long count ) {
91
+ throw ExceptionHandling .dieInternal (tc , "Cannot splice a fixed dimension array" );
92
+ }
65
93
}
0 commit comments