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

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

Issue 1145243013: Check for duplicate library names (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Address comments Created 5 years, 6 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/runtime/dart_runtime.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 typed_data = dart.defineLibrary(typed_data, {}); 1 dart.library('dart/typed_data', null, /* Imports */[
2 var core = dart.import(core); 2 'dart/core'
3 var _native_typed_data = dart.lazyImport(_native_typed_data); 3 ], /* Lazy imports */[
4 (function(exports, core, _native_typed_data) { 4 'dart/_native_typed_data'
5 ], function(exports, core, _native_typed_data) {
5 'use strict'; 6 'use strict';
6 class ByteBuffer extends core.Object {} 7 class ByteBuffer extends core.Object {}
7 class TypedData extends core.Object {} 8 class TypedData extends core.Object {}
8 let _littleEndian = Symbol('_littleEndian'); 9 let _littleEndian = Symbol('_littleEndian');
9 class Endianness extends core.Object { 10 class Endianness extends core.Object {
10 _(littleEndian) { 11 _(littleEndian) {
11 this[_littleEndian] = littleEndian; 12 this[_littleEndian] = littleEndian;
12 } 13 }
13 } 14 }
14 dart.defineNamedConstructor(Endianness, '_'); 15 dart.defineNamedConstructor(Endianness, '_');
(...skipping 955 matching lines...) Expand 10 before | Expand all | Expand 10 after
970 exports.Int64List = Int64List; 971 exports.Int64List = Int64List;
971 exports.Uint64List = Uint64List; 972 exports.Uint64List = Uint64List;
972 exports.Float32List = Float32List; 973 exports.Float32List = Float32List;
973 exports.Float64List = Float64List; 974 exports.Float64List = Float64List;
974 exports.Float32x4List = Float32x4List; 975 exports.Float32x4List = Float32x4List;
975 exports.Int32x4List = Int32x4List; 976 exports.Int32x4List = Int32x4List;
976 exports.Float64x2List = Float64x2List; 977 exports.Float64x2List = Float64x2List;
977 exports.Float32x4 = Float32x4; 978 exports.Float32x4 = Float32x4;
978 exports.Int32x4 = Int32x4; 979 exports.Int32x4 = Int32x4;
979 exports.Float64x2 = Float64x2; 980 exports.Float64x2 = Float64x2;
980 })(typed_data, core, _native_typed_data); 981 });
OLDNEW
« no previous file with comments | « lib/runtime/dart/math.js ('k') | lib/runtime/dart_runtime.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698