Files
sdk/compiler/lib/implementation/array.js
T

47 lines
1.2 KiB
JavaScript

// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
function native_ArrayFactory__new(typeToken, length) {
return RTT.setTypeInfo(
new Array(length),
Array.$lookupRTT(RTT.getTypeInfo(typeToken).typeArgs));
}
function native_ListFactory__new(typeToken, length) {
return RTT.setTypeInfo(
new Array(length),
Array.$lookupRTT(RTT.getTypeInfo(typeToken).typeArgs));
}
function native_ObjectArray__indexOperator(index) {
return this[index];
}
function native_ObjectArray__indexAssignOperator(index, value) {
this[index] = value;
}
function native_ObjectArray_get$length() {
return this.length;
}
function native_ObjectArray__setLength(length) {
this.length = length;
}
function native_ObjectArray__add(element) {
this.push(element);
}
function $inlineArrayIndexCheck(array, index) {
if (index >= 0 && index < array.length) {
return index;
}
native__ArrayJsUtil__throwIndexOutOfRangeException(index);
}
function native_ObjectArray__splice(start, length) {
this.splice(start, length);
}