| OLD | NEW |
| 1 var typed_data; | 1 var typed_data; |
| 2 (function(exports) { | 2 (function(exports) { |
| 3 'use strict'; | 3 'use strict'; |
| 4 class ByteBuffer extends core.Object { | 4 class ByteBuffer extends core.Object {} |
| 5 } | 5 class TypedData extends core.Object {} |
| 6 class TypedData extends core.Object { | |
| 7 } | |
| 8 let _ = Symbol('_'); | 6 let _ = Symbol('_'); |
| 9 let _littleEndian = Symbol('_littleEndian'); | 7 let _littleEndian = Symbol('_littleEndian'); |
| 10 class Endianness extends core.Object { | 8 class Endianness extends core.Object { |
| 11 [_](littleEndian) { | 9 [_](littleEndian) { |
| 12 this[_littleEndian] = littleEndian; | 10 this[_littleEndian] = littleEndian; |
| 13 } | 11 } |
| 14 } | 12 } |
| 15 dart.defineNamedConstructor(Endianness, _); | 13 dart.defineNamedConstructor(Endianness, _); |
| 16 Endianness.BIG_ENDIAN = new Endianness[_](false); | 14 Endianness.BIG_ENDIAN = new Endianness[_](false); |
| 17 Endianness.LITTLE_ENDIAN = new Endianness[_](true); | 15 Endianness.LITTLE_ENDIAN = new Endianness[_](true); |
| (...skipping 861 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 879 exports.Uint64List = Uint64List; | 877 exports.Uint64List = Uint64List; |
| 880 exports.Float32List = Float32List; | 878 exports.Float32List = Float32List; |
| 881 exports.Float64List = Float64List; | 879 exports.Float64List = Float64List; |
| 882 exports.Float32x4List = Float32x4List; | 880 exports.Float32x4List = Float32x4List; |
| 883 exports.Int32x4List = Int32x4List; | 881 exports.Int32x4List = Int32x4List; |
| 884 exports.Float64x2List = Float64x2List; | 882 exports.Float64x2List = Float64x2List; |
| 885 exports.Float32x4 = Float32x4; | 883 exports.Float32x4 = Float32x4; |
| 886 exports.Int32x4 = Int32x4; | 884 exports.Int32x4 = Int32x4; |
| 887 exports.Float64x2 = Float64x2; | 885 exports.Float64x2 = Float64x2; |
| 888 })(typed_data || (typed_data = {})); | 886 })(typed_data || (typed_data = {})); |
| OLD | NEW |