| Index: sdk/lib/_internal/compiler/implementation/lib/js_array.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/lib/js_array.dart b/sdk/lib/_internal/compiler/implementation/lib/js_array.dart
|
| index 30e0a39ce3aa9c88bb9cd20ffd894ab7ab95be0a..2d73dc91acd0333c377df4f7f17dc557290c1ea9 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/lib/js_array.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/lib/js_array.dart
|
| @@ -258,6 +258,11 @@ class JSArray<E> extends Interceptor implements List<E>, JSIndexable {
|
|
|
| int get hashCode => Primitives.objectHashCode(this);
|
|
|
| + Type get runtimeType {
|
| + // Call getRuntimeTypeString to get the name including type arguments.
|
| + return new TypeImpl(getRuntimeTypeString(this));
|
| + }
|
| +
|
| int get length => JS('int', r'#.length', this);
|
|
|
| void set length(int newLength) {
|
|
|