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

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

Issue 1122133003: fixes #157, renaming local library identifiers if needed. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: rebase and format Created 5 years, 7 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/_js_primitives.js ('k') | lib/runtime/dart/async.js » ('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 _native_typed_data; 1 var _native_typed_data = dart.defineLibrary(_native_typed_data, {});
2 (function(exports) { 2 var core = dart.import(core);
3 var typed_data = dart.lazyImport(typed_data);
4 var collection = dart.import(collection);
5 var _internal = dart.import(_internal);
6 var _interceptors = dart.lazyImport(_interceptors);
7 var _js_helper = dart.lazyImport(_js_helper);
8 var math = dart.import(math);
9 (function(exports, core, typed_data, collection, _internal, _interceptors, _js_h elper, math) {
3 'use strict'; 10 'use strict';
4 class NativeByteBuffer extends core.Object { 11 class NativeByteBuffer extends core.Object {
5 NativeByteBuffer() { 12 NativeByteBuffer() {
6 this.lengthInBytes = null; 13 this.lengthInBytes = null;
7 } 14 }
8 get runtimeType() { 15 get runtimeType() {
9 return typed_data.ByteBuffer; 16 return typed_data.ByteBuffer;
10 } 17 }
11 asUint8List(offsetInBytes, length) { 18 asUint8List(offsetInBytes, length) {
12 if (offsetInBytes === void 0) 19 if (offsetInBytes === void 0)
(...skipping 1535 matching lines...) Expand 10 before | Expand all | Expand 10 after
1548 exports.NativeInt16List = NativeInt16List; 1555 exports.NativeInt16List = NativeInt16List;
1549 exports.NativeInt32List = NativeInt32List; 1556 exports.NativeInt32List = NativeInt32List;
1550 exports.NativeInt8List = NativeInt8List; 1557 exports.NativeInt8List = NativeInt8List;
1551 exports.NativeUint16List = NativeUint16List; 1558 exports.NativeUint16List = NativeUint16List;
1552 exports.NativeUint32List = NativeUint32List; 1559 exports.NativeUint32List = NativeUint32List;
1553 exports.NativeUint8ClampedList = NativeUint8ClampedList; 1560 exports.NativeUint8ClampedList = NativeUint8ClampedList;
1554 exports.NativeUint8List = NativeUint8List; 1561 exports.NativeUint8List = NativeUint8List;
1555 exports.NativeFloat32x4 = NativeFloat32x4; 1562 exports.NativeFloat32x4 = NativeFloat32x4;
1556 exports.NativeInt32x4 = NativeInt32x4; 1563 exports.NativeInt32x4 = NativeInt32x4;
1557 exports.NativeFloat64x2 = NativeFloat64x2; 1564 exports.NativeFloat64x2 = NativeFloat64x2;
1558 })(_native_typed_data || (_native_typed_data = {})); 1565 })(_native_typed_data, core, typed_data, collection, _internal, _interceptors, _ js_helper, math);
OLDNEW
« no previous file with comments | « lib/runtime/dart/_js_primitives.js ('k') | lib/runtime/dart/async.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698