| Index: lib/compiler/implementation/lib/scalarlist_patch.dart | 
| diff --git a/lib/compiler/implementation/lib/scalarlist_patch.dart b/lib/compiler/implementation/lib/scalarlist_patch.dart | 
| index b8df2d4fab94f780c7cfda3283a713bfe22f4dd9..5677f8693a4662adebf567e2228e3f1438d2584f 100644 | 
| --- a/lib/compiler/implementation/lib/scalarlist_patch.dart | 
| +++ b/lib/compiler/implementation/lib/scalarlist_patch.dart | 
| @@ -8,111 +8,111 @@ | 
|  | 
| patch class Int8List { | 
| patch factory Int8List(int length) { | 
| -    throw new UnsupportedOperationException('Int8List'); | 
| +    throw new StateError('Int8List'); | 
| } | 
|  | 
| patch factory Int8List.view(ByteArray array, [int start = 0, int length]) { | 
| -    throw new UnsupportedOperationException('Int8List.view'); | 
| +    throw new StateError('Int8List.view'); | 
| } | 
| } | 
|  | 
|  | 
| patch class Uint8List { | 
| patch factory Uint8List(int length) { | 
| -    throw new UnsupportedOperationException('Uint8List'); | 
| +    throw new StateError('Uint8List'); | 
| } | 
|  | 
| patch factory Uint8List.view(ByteArray array, | 
| [int start = 0, int length]) { | 
| -    throw new UnsupportedOperationException('Uint8List.view'); | 
| +    throw new StateError('Uint8List.view'); | 
| } | 
| } | 
|  | 
|  | 
| patch class Int16List { | 
| patch factory Int16List(int length) { | 
| -    throw new UnsupportedOperationException('Int16List'); | 
| +    throw new StateError('Int16List'); | 
|  | 
| } | 
|  | 
| patch factory Int16List.view(ByteArray array, [int start = 0, int length]) { | 
| -    throw new UnsupportedOperationException('Int16List.view'); | 
| +    throw new StateError('Int16List.view'); | 
| } | 
| } | 
|  | 
|  | 
| patch class Uint16List { | 
| patch factory Uint16List(int length) { | 
| -    throw new UnsupportedOperationException('Uint16List'); | 
| +    throw new StateError('Uint16List'); | 
| } | 
|  | 
| patch factory Uint16List.view(ByteArray array, [int start = 0, int length]) { | 
| -    throw new UnsupportedOperationException('Uint16List.view'); | 
| +    throw new StateError('Uint16List.view'); | 
| } | 
| } | 
|  | 
|  | 
| patch class Int32List { | 
| patch factory Int32List(int length) { | 
| -    throw new UnsupportedOperationException('Int32List'); | 
| +    throw new StateError('Int32List'); | 
| } | 
|  | 
| patch factory Int32List.view(ByteArray array, [int start = 0, int length]) { | 
| -    throw new UnsupportedOperationException('Int32List.view'); | 
| +    throw new StateError('Int32List.view'); | 
| } | 
| } | 
|  | 
|  | 
| patch class Uint32List { | 
| patch factory Uint32List(int length) { | 
| -    throw new UnsupportedOperationException('Uint32List'); | 
| +    throw new StateError('Uint32List'); | 
| } | 
|  | 
| patch factory Uint32List.view(ByteArray array, [int start = 0, int length]) { | 
| -    throw new UnsupportedOperationException('Uint32List.view'); | 
| +    throw new StateError('Uint32List.view'); | 
| } | 
| } | 
|  | 
|  | 
| patch class Int64List { | 
| patch factory Int64List(int length) { | 
| -    throw new UnsupportedOperationException('Int64List'); | 
| +    throw new StateError('Int64List'); | 
| } | 
|  | 
| patch factory Int64List.view(ByteArray array, [int start = 0, int length]) { | 
| -    throw new UnsupportedOperationException('Int64List.view'); | 
| +    throw new StateError('Int64List.view'); | 
| } | 
| } | 
|  | 
|  | 
| patch class Uint64List { | 
| patch factory Uint64List(int length) { | 
| -    throw new UnsupportedOperationException('Uint64List'); | 
| +    throw new StateError('Uint64List'); | 
| } | 
|  | 
| patch factory Uint64List.view(ByteArray array, [int start = 0, int length]) { | 
| -    throw new UnsupportedOperationException('Uint64List.view'); | 
| +    throw new StateError('Uint64List.view'); | 
| } | 
| } | 
|  | 
|  | 
| patch class Float32List { | 
| patch factory Float32List(int length) { | 
| -    throw new UnsupportedOperationException('Float32List'); | 
| +    throw new StateError('Float32List'); | 
| } | 
|  | 
| patch factory Float32List.view(ByteArray array, [int start = 0, int length]) { | 
| -    throw new UnsupportedOperationException('Float32List.view'); | 
| +    throw new StateError('Float32List.view'); | 
| } | 
| } | 
|  | 
|  | 
| patch class Float64List { | 
| patch factory Float64List(int length) { | 
| -    throw new UnsupportedOperationException('Float64List'); | 
| +    throw new StateError('Float64List'); | 
| } | 
|  | 
| patch factory Float64List.view(ByteArray array, [int start = 0, int length]) { | 
| -    throw new UnsupportedOperationException('Float64List.view'); | 
| +    throw new StateError('Float64List.view'); | 
| } | 
| } | 
|  |