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

Unified Diff: test/codegen/expect/dart/_native_typed_data.js

Issue 1011153002: js: fix core.Object, output order, static const fields (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/codegen/expect/dart/_js_helper.js ('k') | test/codegen/expect/dart/async.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/dart/_native_typed_data.js
diff --git a/test/codegen/expect/dart/_native_typed_data.js b/test/codegen/expect/dart/_native_typed_data.js
index 8013696b038db575a98ffa44e1dcafe60faeae42..ecbeb68d01d46e41ef255dbb3ae0fa9a9038872c 100644
--- a/test/codegen/expect/dart/_native_typed_data.js
+++ b/test/codegen/expect/dart/_native_typed_data.js
@@ -1,7 +1,7 @@
var _native_typed_data;
(function(exports) {
'use strict';
- class NativeByteBuffer extends dart.Object {
+ class NativeByteBuffer extends core.Object {
NativeByteBuffer() {
this.lengthInBytes = null;
}
@@ -388,7 +388,7 @@ var _native_typed_data;
dart.defineNamedConstructor(NativeFloat64x2List, '_externalStorage');
dart.defineNamedConstructor(NativeFloat64x2List, '_slowFromList');
dart.defineNamedConstructor(NativeFloat64x2List, 'fromList');
- class NativeTypedData extends dart.Object {
+ class NativeTypedData extends core.Object {
NativeTypedData() {
this.buffer = null;
this.lengthInBytes = null;
@@ -961,7 +961,7 @@ var _native_typed_data;
dart.defineNamedConstructor(NativeUint8List, 'fromList');
dart.defineNamedConstructor(NativeUint8List, 'view');
let _truncate = Symbol('_truncate');
- class NativeFloat32x4 extends dart.Object {
+ class NativeFloat32x4 extends core.Object {
static [_truncate](x) {
_list.set(0, dart.as(x, core.num));
return _list.get(0);
@@ -1230,7 +1230,7 @@ var _native_typed_data;
});
let _list = Symbol('_list');
let _uint32view = Symbol('_uint32view');
- class NativeInt32x4 extends dart.Object {
+ class NativeInt32x4 extends core.Object {
static [_truncate](x) {
dart.dsetindex(_list, 0, x);
return dart.dindex(_list, 0);
@@ -1412,7 +1412,7 @@ var _native_typed_data;
return new NativeInt32List(4);
}
});
- class NativeFloat64x2 extends dart.Object {
+ class NativeFloat64x2 extends core.Object {
NativeFloat64x2(x, y) {
this.x = x;
this.y = y;
« no previous file with comments | « test/codegen/expect/dart/_js_helper.js ('k') | test/codegen/expect/dart/async.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698