Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Side by Side Diff: lib/runtime/dart/typed_data.js

Issue 1047203002: compute interfaces lazily (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « lib/runtime/dart/math.js ('k') | lib/src/codegen/js_codegen.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 }
6 class TypedData extends core.Object { 6 class TypedData extends core.Object {
7 } 7 }
8 let _ = Symbol('_'); 8 let _ = Symbol('_');
9 let _littleEndian = Symbol('_littleEndian'); 9 let _littleEndian = Symbol('_littleEndian');
10 class Endianness extends core.Object { 10 class Endianness extends core.Object {
(...skipping 14 matching lines...) Expand all
25 return new _native_typed_data.NativeByteData(length); 25 return new _native_typed_data.NativeByteData(length);
26 } 26 }
27 view(buffer, offsetInBytes, length) { 27 view(buffer, offsetInBytes, length) {
28 if (offsetInBytes === void 0) 28 if (offsetInBytes === void 0)
29 offsetInBytes = 0; 29 offsetInBytes = 0;
30 if (length === void 0) 30 if (length === void 0)
31 length = null; 31 length = null;
32 return buffer.asByteData(offsetInBytes, length); 32 return buffer.asByteData(offsetInBytes, length);
33 } 33 }
34 } 34 }
35 ByteData[dart.implements] = [TypedData]; 35 ByteData[dart.implements] = () => [TypedData];
36 dart.defineNamedConstructor(ByteData, 'view'); 36 dart.defineNamedConstructor(ByteData, 'view');
37 class Int8List extends core.Object { 37 class Int8List extends core.Object {
38 Int8List(length) { 38 Int8List(length) {
39 return new _native_typed_data.NativeInt8List(length); 39 return new _native_typed_data.NativeInt8List(length);
40 } 40 }
41 fromList(elements) { 41 fromList(elements) {
42 return new _native_typed_data.NativeInt8List.fromList(elements); 42 return new _native_typed_data.NativeInt8List.fromList(elements);
43 } 43 }
44 view(buffer, offsetInBytes, length) { 44 view(buffer, offsetInBytes, length) {
45 if (offsetInBytes === void 0) 45 if (offsetInBytes === void 0)
46 offsetInBytes = 0; 46 offsetInBytes = 0;
47 if (length === void 0) 47 if (length === void 0)
48 length = null; 48 length = null;
49 return buffer.asInt8List(offsetInBytes, length); 49 return buffer.asInt8List(offsetInBytes, length);
50 } 50 }
51 } 51 }
52 Int8List[dart.implements] = [core.List$(core.int), TypedData]; 52 Int8List[dart.implements] = () => [core.List$(core.int), TypedData];
53 dart.defineNamedConstructor(Int8List, 'fromList'); 53 dart.defineNamedConstructor(Int8List, 'fromList');
54 dart.defineNamedConstructor(Int8List, 'view'); 54 dart.defineNamedConstructor(Int8List, 'view');
55 Int8List.BYTES_PER_ELEMENT = 1; 55 Int8List.BYTES_PER_ELEMENT = 1;
56 class Uint8List extends core.Object { 56 class Uint8List extends core.Object {
57 Uint8List(length) { 57 Uint8List(length) {
58 return new _native_typed_data.NativeUint8List(length); 58 return new _native_typed_data.NativeUint8List(length);
59 } 59 }
60 fromList(elements) { 60 fromList(elements) {
61 return new _native_typed_data.NativeUint8List.fromList(elements); 61 return new _native_typed_data.NativeUint8List.fromList(elements);
62 } 62 }
63 view(buffer, offsetInBytes, length) { 63 view(buffer, offsetInBytes, length) {
64 if (offsetInBytes === void 0) 64 if (offsetInBytes === void 0)
65 offsetInBytes = 0; 65 offsetInBytes = 0;
66 if (length === void 0) 66 if (length === void 0)
67 length = null; 67 length = null;
68 return buffer.asUint8List(offsetInBytes, length); 68 return buffer.asUint8List(offsetInBytes, length);
69 } 69 }
70 } 70 }
71 Uint8List[dart.implements] = [core.List$(core.int), TypedData]; 71 Uint8List[dart.implements] = () => [core.List$(core.int), TypedData];
72 dart.defineNamedConstructor(Uint8List, 'fromList'); 72 dart.defineNamedConstructor(Uint8List, 'fromList');
73 dart.defineNamedConstructor(Uint8List, 'view'); 73 dart.defineNamedConstructor(Uint8List, 'view');
74 Uint8List.BYTES_PER_ELEMENT = 1; 74 Uint8List.BYTES_PER_ELEMENT = 1;
75 class Uint8ClampedList extends core.Object { 75 class Uint8ClampedList extends core.Object {
76 Uint8ClampedList(length) { 76 Uint8ClampedList(length) {
77 return new _native_typed_data.NativeUint8ClampedList(length); 77 return new _native_typed_data.NativeUint8ClampedList(length);
78 } 78 }
79 fromList(elements) { 79 fromList(elements) {
80 return new _native_typed_data.NativeUint8ClampedList.fromList(elements); 80 return new _native_typed_data.NativeUint8ClampedList.fromList(elements);
81 } 81 }
82 view(buffer, offsetInBytes, length) { 82 view(buffer, offsetInBytes, length) {
83 if (offsetInBytes === void 0) 83 if (offsetInBytes === void 0)
84 offsetInBytes = 0; 84 offsetInBytes = 0;
85 if (length === void 0) 85 if (length === void 0)
86 length = null; 86 length = null;
87 return buffer.asUint8ClampedList(offsetInBytes, length); 87 return buffer.asUint8ClampedList(offsetInBytes, length);
88 } 88 }
89 } 89 }
90 Uint8ClampedList[dart.implements] = [core.List$(core.int), TypedData]; 90 Uint8ClampedList[dart.implements] = () => [core.List$(core.int), TypedData];
91 dart.defineNamedConstructor(Uint8ClampedList, 'fromList'); 91 dart.defineNamedConstructor(Uint8ClampedList, 'fromList');
92 dart.defineNamedConstructor(Uint8ClampedList, 'view'); 92 dart.defineNamedConstructor(Uint8ClampedList, 'view');
93 Uint8ClampedList.BYTES_PER_ELEMENT = 1; 93 Uint8ClampedList.BYTES_PER_ELEMENT = 1;
94 class Int16List extends core.Object { 94 class Int16List extends core.Object {
95 Int16List(length) { 95 Int16List(length) {
96 return new _native_typed_data.NativeInt16List(length); 96 return new _native_typed_data.NativeInt16List(length);
97 } 97 }
98 fromList(elements) { 98 fromList(elements) {
99 return new _native_typed_data.NativeInt16List.fromList(elements); 99 return new _native_typed_data.NativeInt16List.fromList(elements);
100 } 100 }
101 view(buffer, offsetInBytes, length) { 101 view(buffer, offsetInBytes, length) {
102 if (offsetInBytes === void 0) 102 if (offsetInBytes === void 0)
103 offsetInBytes = 0; 103 offsetInBytes = 0;
104 if (length === void 0) 104 if (length === void 0)
105 length = null; 105 length = null;
106 return buffer.asInt16List(offsetInBytes, length); 106 return buffer.asInt16List(offsetInBytes, length);
107 } 107 }
108 } 108 }
109 Int16List[dart.implements] = [core.List$(core.int), TypedData]; 109 Int16List[dart.implements] = () => [core.List$(core.int), TypedData];
110 dart.defineNamedConstructor(Int16List, 'fromList'); 110 dart.defineNamedConstructor(Int16List, 'fromList');
111 dart.defineNamedConstructor(Int16List, 'view'); 111 dart.defineNamedConstructor(Int16List, 'view');
112 Int16List.BYTES_PER_ELEMENT = 2; 112 Int16List.BYTES_PER_ELEMENT = 2;
113 class Uint16List extends core.Object { 113 class Uint16List extends core.Object {
114 Uint16List(length) { 114 Uint16List(length) {
115 return new _native_typed_data.NativeUint16List(length); 115 return new _native_typed_data.NativeUint16List(length);
116 } 116 }
117 fromList(elements) { 117 fromList(elements) {
118 return new _native_typed_data.NativeUint16List.fromList(elements); 118 return new _native_typed_data.NativeUint16List.fromList(elements);
119 } 119 }
120 view(buffer, offsetInBytes, length) { 120 view(buffer, offsetInBytes, length) {
121 if (offsetInBytes === void 0) 121 if (offsetInBytes === void 0)
122 offsetInBytes = 0; 122 offsetInBytes = 0;
123 if (length === void 0) 123 if (length === void 0)
124 length = null; 124 length = null;
125 return buffer.asUint16List(offsetInBytes, length); 125 return buffer.asUint16List(offsetInBytes, length);
126 } 126 }
127 } 127 }
128 Uint16List[dart.implements] = [core.List$(core.int), TypedData]; 128 Uint16List[dart.implements] = () => [core.List$(core.int), TypedData];
129 dart.defineNamedConstructor(Uint16List, 'fromList'); 129 dart.defineNamedConstructor(Uint16List, 'fromList');
130 dart.defineNamedConstructor(Uint16List, 'view'); 130 dart.defineNamedConstructor(Uint16List, 'view');
131 Uint16List.BYTES_PER_ELEMENT = 2; 131 Uint16List.BYTES_PER_ELEMENT = 2;
132 class Int32List extends core.Object { 132 class Int32List extends core.Object {
133 Int32List(length) { 133 Int32List(length) {
134 return new _native_typed_data.NativeInt32List(length); 134 return new _native_typed_data.NativeInt32List(length);
135 } 135 }
136 fromList(elements) { 136 fromList(elements) {
137 return new _native_typed_data.NativeInt32List.fromList(elements); 137 return new _native_typed_data.NativeInt32List.fromList(elements);
138 } 138 }
139 view(buffer, offsetInBytes, length) { 139 view(buffer, offsetInBytes, length) {
140 if (offsetInBytes === void 0) 140 if (offsetInBytes === void 0)
141 offsetInBytes = 0; 141 offsetInBytes = 0;
142 if (length === void 0) 142 if (length === void 0)
143 length = null; 143 length = null;
144 return buffer.asInt32List(offsetInBytes, length); 144 return buffer.asInt32List(offsetInBytes, length);
145 } 145 }
146 } 146 }
147 Int32List[dart.implements] = [core.List$(core.int), TypedData]; 147 Int32List[dart.implements] = () => [core.List$(core.int), TypedData];
148 dart.defineNamedConstructor(Int32List, 'fromList'); 148 dart.defineNamedConstructor(Int32List, 'fromList');
149 dart.defineNamedConstructor(Int32List, 'view'); 149 dart.defineNamedConstructor(Int32List, 'view');
150 Int32List.BYTES_PER_ELEMENT = 4; 150 Int32List.BYTES_PER_ELEMENT = 4;
151 class Uint32List extends core.Object { 151 class Uint32List extends core.Object {
152 Uint32List(length) { 152 Uint32List(length) {
153 return new _native_typed_data.NativeUint32List(length); 153 return new _native_typed_data.NativeUint32List(length);
154 } 154 }
155 fromList(elements) { 155 fromList(elements) {
156 return new _native_typed_data.NativeUint32List.fromList(elements); 156 return new _native_typed_data.NativeUint32List.fromList(elements);
157 } 157 }
158 view(buffer, offsetInBytes, length) { 158 view(buffer, offsetInBytes, length) {
159 if (offsetInBytes === void 0) 159 if (offsetInBytes === void 0)
160 offsetInBytes = 0; 160 offsetInBytes = 0;
161 if (length === void 0) 161 if (length === void 0)
162 length = null; 162 length = null;
163 return buffer.asUint32List(offsetInBytes, length); 163 return buffer.asUint32List(offsetInBytes, length);
164 } 164 }
165 } 165 }
166 Uint32List[dart.implements] = [core.List$(core.int), TypedData]; 166 Uint32List[dart.implements] = () => [core.List$(core.int), TypedData];
167 dart.defineNamedConstructor(Uint32List, 'fromList'); 167 dart.defineNamedConstructor(Uint32List, 'fromList');
168 dart.defineNamedConstructor(Uint32List, 'view'); 168 dart.defineNamedConstructor(Uint32List, 'view');
169 Uint32List.BYTES_PER_ELEMENT = 4; 169 Uint32List.BYTES_PER_ELEMENT = 4;
170 class Int64List extends core.Object { 170 class Int64List extends core.Object {
171 Int64List(length) { 171 Int64List(length) {
172 throw new core.UnsupportedError("Int64List not supported by dart2js."); 172 throw new core.UnsupportedError("Int64List not supported by dart2js.");
173 } 173 }
174 fromList(elements) { 174 fromList(elements) {
175 throw new core.UnsupportedError("Int64List not supported by dart2js."); 175 throw new core.UnsupportedError("Int64List not supported by dart2js.");
176 } 176 }
177 view(buffer, offsetInBytes, length) { 177 view(buffer, offsetInBytes, length) {
178 if (offsetInBytes === void 0) 178 if (offsetInBytes === void 0)
179 offsetInBytes = 0; 179 offsetInBytes = 0;
180 if (length === void 0) 180 if (length === void 0)
181 length = null; 181 length = null;
182 return buffer.asInt64List(offsetInBytes, length); 182 return buffer.asInt64List(offsetInBytes, length);
183 } 183 }
184 } 184 }
185 Int64List[dart.implements] = [core.List$(core.int), TypedData]; 185 Int64List[dart.implements] = () => [core.List$(core.int), TypedData];
186 dart.defineNamedConstructor(Int64List, 'fromList'); 186 dart.defineNamedConstructor(Int64List, 'fromList');
187 dart.defineNamedConstructor(Int64List, 'view'); 187 dart.defineNamedConstructor(Int64List, 'view');
188 Int64List.BYTES_PER_ELEMENT = 8; 188 Int64List.BYTES_PER_ELEMENT = 8;
189 class Uint64List extends core.Object { 189 class Uint64List extends core.Object {
190 Uint64List(length) { 190 Uint64List(length) {
191 throw new core.UnsupportedError("Uint64List not supported by dart2js."); 191 throw new core.UnsupportedError("Uint64List not supported by dart2js.");
192 } 192 }
193 fromList(elements) { 193 fromList(elements) {
194 throw new core.UnsupportedError("Uint64List not supported by dart2js."); 194 throw new core.UnsupportedError("Uint64List not supported by dart2js.");
195 } 195 }
196 view(buffer, offsetInBytes, length) { 196 view(buffer, offsetInBytes, length) {
197 if (offsetInBytes === void 0) 197 if (offsetInBytes === void 0)
198 offsetInBytes = 0; 198 offsetInBytes = 0;
199 if (length === void 0) 199 if (length === void 0)
200 length = null; 200 length = null;
201 return buffer.asUint64List(offsetInBytes, length); 201 return buffer.asUint64List(offsetInBytes, length);
202 } 202 }
203 } 203 }
204 Uint64List[dart.implements] = [core.List$(core.int), TypedData]; 204 Uint64List[dart.implements] = () => [core.List$(core.int), TypedData];
205 dart.defineNamedConstructor(Uint64List, 'fromList'); 205 dart.defineNamedConstructor(Uint64List, 'fromList');
206 dart.defineNamedConstructor(Uint64List, 'view'); 206 dart.defineNamedConstructor(Uint64List, 'view');
207 Uint64List.BYTES_PER_ELEMENT = 8; 207 Uint64List.BYTES_PER_ELEMENT = 8;
208 class Float32List extends core.Object { 208 class Float32List extends core.Object {
209 Float32List(length) { 209 Float32List(length) {
210 return new _native_typed_data.NativeFloat32List(length); 210 return new _native_typed_data.NativeFloat32List(length);
211 } 211 }
212 fromList(elements) { 212 fromList(elements) {
213 return new _native_typed_data.NativeFloat32List.fromList(elements); 213 return new _native_typed_data.NativeFloat32List.fromList(elements);
214 } 214 }
215 view(buffer, offsetInBytes, length) { 215 view(buffer, offsetInBytes, length) {
216 if (offsetInBytes === void 0) 216 if (offsetInBytes === void 0)
217 offsetInBytes = 0; 217 offsetInBytes = 0;
218 if (length === void 0) 218 if (length === void 0)
219 length = null; 219 length = null;
220 return buffer.asFloat32List(offsetInBytes, length); 220 return buffer.asFloat32List(offsetInBytes, length);
221 } 221 }
222 } 222 }
223 Float32List[dart.implements] = [core.List$(core.double), TypedData]; 223 Float32List[dart.implements] = () => [core.List$(core.double), TypedData];
224 dart.defineNamedConstructor(Float32List, 'fromList'); 224 dart.defineNamedConstructor(Float32List, 'fromList');
225 dart.defineNamedConstructor(Float32List, 'view'); 225 dart.defineNamedConstructor(Float32List, 'view');
226 Float32List.BYTES_PER_ELEMENT = 4; 226 Float32List.BYTES_PER_ELEMENT = 4;
227 class Float64List extends core.Object { 227 class Float64List extends core.Object {
228 Float64List(length) { 228 Float64List(length) {
229 return new _native_typed_data.NativeFloat64List(length); 229 return new _native_typed_data.NativeFloat64List(length);
230 } 230 }
231 fromList(elements) { 231 fromList(elements) {
232 return new _native_typed_data.NativeFloat64List.fromList(elements); 232 return new _native_typed_data.NativeFloat64List.fromList(elements);
233 } 233 }
234 view(buffer, offsetInBytes, length) { 234 view(buffer, offsetInBytes, length) {
235 if (offsetInBytes === void 0) 235 if (offsetInBytes === void 0)
236 offsetInBytes = 0; 236 offsetInBytes = 0;
237 if (length === void 0) 237 if (length === void 0)
238 length = null; 238 length = null;
239 return buffer.asFloat64List(offsetInBytes, length); 239 return buffer.asFloat64List(offsetInBytes, length);
240 } 240 }
241 } 241 }
242 Float64List[dart.implements] = [core.List$(core.double), TypedData]; 242 Float64List[dart.implements] = () => [core.List$(core.double), TypedData];
243 dart.defineNamedConstructor(Float64List, 'fromList'); 243 dart.defineNamedConstructor(Float64List, 'fromList');
244 dart.defineNamedConstructor(Float64List, 'view'); 244 dart.defineNamedConstructor(Float64List, 'view');
245 Float64List.BYTES_PER_ELEMENT = 8; 245 Float64List.BYTES_PER_ELEMENT = 8;
246 class Float32x4List extends core.Object { 246 class Float32x4List extends core.Object {
247 Float32x4List(length) { 247 Float32x4List(length) {
248 return new _native_typed_data.NativeFloat32x4List(length); 248 return new _native_typed_data.NativeFloat32x4List(length);
249 } 249 }
250 fromList(elements) { 250 fromList(elements) {
251 return new _native_typed_data.NativeFloat32x4List.fromList(elements); 251 return new _native_typed_data.NativeFloat32x4List.fromList(elements);
252 } 252 }
253 view(buffer, offsetInBytes, length) { 253 view(buffer, offsetInBytes, length) {
254 if (offsetInBytes === void 0) 254 if (offsetInBytes === void 0)
255 offsetInBytes = 0; 255 offsetInBytes = 0;
256 if (length === void 0) 256 if (length === void 0)
257 length = null; 257 length = null;
258 return buffer.asFloat32x4List(offsetInBytes, length); 258 return buffer.asFloat32x4List(offsetInBytes, length);
259 } 259 }
260 } 260 }
261 Float32x4List[dart.implements] = [core.List$(Float32x4), TypedData]; 261 Float32x4List[dart.implements] = () => [core.List$(Float32x4), TypedData];
262 dart.defineNamedConstructor(Float32x4List, 'fromList'); 262 dart.defineNamedConstructor(Float32x4List, 'fromList');
263 dart.defineNamedConstructor(Float32x4List, 'view'); 263 dart.defineNamedConstructor(Float32x4List, 'view');
264 Float32x4List.BYTES_PER_ELEMENT = 16; 264 Float32x4List.BYTES_PER_ELEMENT = 16;
265 class Int32x4List extends core.Object { 265 class Int32x4List extends core.Object {
266 Int32x4List(length) { 266 Int32x4List(length) {
267 return new _native_typed_data.NativeInt32x4List(length); 267 return new _native_typed_data.NativeInt32x4List(length);
268 } 268 }
269 fromList(elements) { 269 fromList(elements) {
270 return new _native_typed_data.NativeInt32x4List.fromList(elements); 270 return new _native_typed_data.NativeInt32x4List.fromList(elements);
271 } 271 }
272 view(buffer, offsetInBytes, length) { 272 view(buffer, offsetInBytes, length) {
273 if (offsetInBytes === void 0) 273 if (offsetInBytes === void 0)
274 offsetInBytes = 0; 274 offsetInBytes = 0;
275 if (length === void 0) 275 if (length === void 0)
276 length = null; 276 length = null;
277 return buffer.asInt32x4List(offsetInBytes, length); 277 return buffer.asInt32x4List(offsetInBytes, length);
278 } 278 }
279 } 279 }
280 Int32x4List[dart.implements] = [core.List$(Int32x4), TypedData]; 280 Int32x4List[dart.implements] = () => [core.List$(Int32x4), TypedData];
281 dart.defineNamedConstructor(Int32x4List, 'fromList'); 281 dart.defineNamedConstructor(Int32x4List, 'fromList');
282 dart.defineNamedConstructor(Int32x4List, 'view'); 282 dart.defineNamedConstructor(Int32x4List, 'view');
283 Int32x4List.BYTES_PER_ELEMENT = 16; 283 Int32x4List.BYTES_PER_ELEMENT = 16;
284 class Float64x2List extends core.Object { 284 class Float64x2List extends core.Object {
285 Float64x2List(length) { 285 Float64x2List(length) {
286 return new _native_typed_data.NativeFloat64x2List(length); 286 return new _native_typed_data.NativeFloat64x2List(length);
287 } 287 }
288 fromList(elements) { 288 fromList(elements) {
289 return new _native_typed_data.NativeFloat64x2List.fromList(elements); 289 return new _native_typed_data.NativeFloat64x2List.fromList(elements);
290 } 290 }
291 view(buffer, offsetInBytes, length) { 291 view(buffer, offsetInBytes, length) {
292 if (offsetInBytes === void 0) 292 if (offsetInBytes === void 0)
293 offsetInBytes = 0; 293 offsetInBytes = 0;
294 if (length === void 0) 294 if (length === void 0)
295 length = null; 295 length = null;
296 return buffer.asFloat64x2List(offsetInBytes, length); 296 return buffer.asFloat64x2List(offsetInBytes, length);
297 } 297 }
298 } 298 }
299 Float64x2List[dart.implements] = [core.List$(Float64x2), TypedData]; 299 Float64x2List[dart.implements] = () => [core.List$(Float64x2), TypedData];
300 dart.defineNamedConstructor(Float64x2List, 'fromList'); 300 dart.defineNamedConstructor(Float64x2List, 'fromList');
301 dart.defineNamedConstructor(Float64x2List, 'view'); 301 dart.defineNamedConstructor(Float64x2List, 'view');
302 Float64x2List.BYTES_PER_ELEMENT = 16; 302 Float64x2List.BYTES_PER_ELEMENT = 16;
303 class Float32x4 extends core.Object { 303 class Float32x4 extends core.Object {
304 Float32x4(x, y, z, w) { 304 Float32x4(x, y, z, w) {
305 return new _native_typed_data.NativeFloat32x4(x, y, z, w); 305 return new _native_typed_data.NativeFloat32x4(x, y, z, w);
306 } 306 }
307 splat(v) { 307 splat(v) {
308 return new _native_typed_data.NativeFloat32x4.splat(v); 308 return new _native_typed_data.NativeFloat32x4.splat(v);
309 } 309 }
(...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after
879 exports.Uint64List = Uint64List; 879 exports.Uint64List = Uint64List;
880 exports.Float32List = Float32List; 880 exports.Float32List = Float32List;
881 exports.Float64List = Float64List; 881 exports.Float64List = Float64List;
882 exports.Float32x4List = Float32x4List; 882 exports.Float32x4List = Float32x4List;
883 exports.Int32x4List = Int32x4List; 883 exports.Int32x4List = Int32x4List;
884 exports.Float64x2List = Float64x2List; 884 exports.Float64x2List = Float64x2List;
885 exports.Float32x4 = Float32x4; 885 exports.Float32x4 = Float32x4;
886 exports.Int32x4 = Int32x4; 886 exports.Int32x4 = Int32x4;
887 exports.Float64x2 = Float64x2; 887 exports.Float64x2 = Float64x2;
888 })(typed_data || (typed_data = {})); 888 })(typed_data || (typed_data = {}));
OLDNEW
« no previous file with comments | « lib/runtime/dart/math.js ('k') | lib/src/codegen/js_codegen.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698