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

Unified Diff: dart/tests/compiler/dart2js_foreign/native_class_inheritance4_test.dart

Issue 23477028: Remove dart2js_foreign. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 3 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
Index: dart/tests/compiler/dart2js_foreign/native_class_inheritance4_test.dart
diff --git a/dart/tests/compiler/dart2js_foreign/native_class_inheritance4_test.dart b/dart/tests/compiler/dart2js_foreign/native_class_inheritance4_test.dart
deleted file mode 100644
index f1285150f2bb163b943f0f27b949618588d9fc5a..0000000000000000000000000000000000000000
--- a/dart/tests/compiler/dart2js_foreign/native_class_inheritance4_test.dart
+++ /dev/null
@@ -1,151 +0,0 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-// Additional Dart code may be 'placed on' hidden native classes. With
-// inheritance, the superclass method must not be reached by a call on the
-// subclass.
-
-import "package:expect/expect.dart";
-import 'native_metadata.dart';
-
-@Native("*A")
-class A {
- var _field;
-
- int get X => _field;
- void set X(int x) { _field = x; }
-
- int method(int z) => _field + z;
-}
-
-@Native("*B")
-class B extends A {
- var _field2;
-
- int get X => _field2;
- void set X(int x) { _field2 = x; }
-
- int method(int z) => _field2 + z;
-}
-
-@native A makeA() { return new A(); }
-@native B makeB() { return new B(); }
-
-@Native(r"""
-function inherits(child, parent) {
- if (child.prototype.__proto__) {
- child.prototype.__proto__ = parent.prototype;
- } else {
- function tmp() {};
- tmp.prototype = parent.prototype;
- child.prototype = new tmp();
- child.prototype.constructor = child;
- }
-}
-
-function A(){}
-function B(){}
-inherits(B, A);
-makeA = function(){return new A;};
-makeB = function(){return new B;};
-""")
-void setup();
-
-testBasicA_dynamic() {
- setup(); // Fresh constructors.
-
- var a = [makeA()][0];
-
- a.X = 100;
- Expect.equals(100, a._field);
- Expect.equals(100, a.X);
- Expect.equals(150, a.method(50));
-}
-
-testBasicA_typed() {
- setup(); // Fresh constructors.
-
- A a = makeA();
-
- a.X = 100;
- Expect.equals(100, a._field);
- Expect.equals(100, a.X);
- Expect.equals(150, a.method(50));
-}
-
-testBasicB_dynamic() {
- setup(); // Fresh constructors.
-
- var b = [makeB()][0];
-
- b._field = 1;
- b.X = 123;
- Expect.equals(1, b._field);
- Expect.equals(123, b._field2);
- Expect.equals(123, b.X);
- Expect.equals(200, b.method(77));
-}
-
-testBasicB_typed() {
- setup(); // Fresh constructors.
-
- B b = makeB();
-
- b._field = 1;
- b.X = 123;
- Expect.equals(1, b._field);
- Expect.equals(123, b._field2);
- Expect.equals(123, b.X);
- Expect.equals(200, b.method(77));
-}
-
-testAB_dynamic() {
- setup(); // Fresh constructors.
-
- var things = [makeA(), makeB()];
- var a = things[0];
- var b = things[1];
-
- a.X = 100;
- Expect.equals(100, a._field);
- Expect.equals(100, a.X);
- Expect.equals(150, a.method(50));
-
- b._field = 1;
- b._field2 = 2;
- b.X = 123;
- Expect.equals(1, b._field);
- Expect.equals(123, b._field2);
- Expect.equals(123, b.X);
- Expect.equals(200, b.method(77));
-}
-
-testAB_typed() {
- setup(); // Fresh constructors.
-
- A a = makeA();
- B b = makeB();
-
- a.X = 100;
- Expect.equals(100, a._field);
- Expect.equals(100, a.X);
- Expect.equals(150, a.method(50));
-
- b._field = 1;
- b._field2 = 2;
- b.X = 123;
- Expect.equals(1, b._field);
- Expect.equals(123, b._field2);
- Expect.equals(123, b.X);
- Expect.equals(200, b.method(77));
-}
-
-main() {
- testBasicA_dynamic();
- testBasicA_typed();
- testBasicB_dynamic();
- testBasicB_typed();
- testAB_dynamic();
- testAB_typed();
-}

Powered by Google App Engine
This is Rietveld 408576698