| Index: lib/runtime/dart/_interceptors.js
|
| diff --git a/lib/runtime/dart/_interceptors.js b/lib/runtime/dart/_interceptors.js
|
| index a57f1342d03af83ff691c0d03e339dd306c7686a..7cf7217cedc0817c11d004db67fc7eb272b983eb 100644
|
| --- a/lib/runtime/dart/_interceptors.js
|
| +++ b/lib/runtime/dart/_interceptors.js
|
| @@ -25,28 +25,28 @@ var _interceptors;
|
| JSArray() {
|
| super.Interceptor();
|
| }
|
| - JSArray$fixed(length) {
|
| + fixed(length) {
|
| if (dart.notNull(!(typeof length == 'number')) || dart.notNull(length) < 0) {
|
| throw new core.ArgumentError(`Length must be a non-negative integer: ${length}`);
|
| }
|
| return new JSArray.markFixed(new Array(length));
|
| }
|
| - JSArray$emptyGrowable() {
|
| + emptyGrowable() {
|
| return new JSArray.markGrowable([]);
|
| }
|
| - JSArray$growable(length) {
|
| + growable(length) {
|
| if (dart.notNull(!(typeof length == 'number')) || dart.notNull(length) < 0) {
|
| throw new core.ArgumentError(`Length must be a non-negative integer: ${length}`);
|
| }
|
| return new JSArray.markGrowable(new Array(length));
|
| }
|
| - JSArray$typed(allocation) {
|
| + typed(allocation) {
|
| return dart.as(allocation, JSArray$(E));
|
| }
|
| - JSArray$markFixed(allocation) {
|
| + markFixed(allocation) {
|
| return dart.as(JSArray.markFixedList(new JSArray.typed(allocation)), JSArray$(E));
|
| }
|
| - JSArray$markGrowable(allocation) {
|
| + markGrowable(allocation) {
|
| return dart.as(new JSArray.typed(allocation), JSArray$(E));
|
| }
|
| static markFixedList(list) {
|
|
|