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

Unified Diff: test/codegen/language/naming3_test.dart

Issue 1347453002: fix a few more codegen issues: (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: run the tests too Created 5 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: test/codegen/language/naming3_test.dart
diff --git a/test/codegen/language/naming3_test.dart b/test/codegen/language/naming3_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..5f7c80fa5ae91a2411638013302a7ae96f8e4529
--- /dev/null
+++ b/test/codegen/language/naming3_test.dart
@@ -0,0 +1,47 @@
+// Copyright (c) 2012, 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.
+
+import "package:expect/expect.dart";
+
+class A {
+ var __PROTO__ = 499;
+ var constructor = 1;
+ var prototype = 2;
+}
+
+// TODO(jmesserly): changed this test to avoid shadowing a field with a getter,
+// which DDC doesn't currently support, see:
+// https://github.com/dart-lang/dev_compiler/issues/52
+class A2 {
+ get __PROTO__ => 499;
+ get constructor => 1;
+ get prototype => 2;
+}
+
+class B extends A2 {
+ get __PROTO__ => 42;
+ get constructor => 3;
+ get prototype => 4;
+}
+
+main() {
+ var a = new A();
+ var a2 = new A2();
+ var b = new B();
+ var list = [a, a2, b];
+ for (int i = 0; i < list.length; i++) {
+ var proto = list[i].__PROTO__;
+ var constructor = list[i].constructor;
+ var prototype = list[i].prototype;
+ if (i < 2) {
+ Expect.equals(499, proto);
+ Expect.equals(1, constructor);
+ Expect.equals(2, prototype);
+ } else {
+ Expect.equals(42, proto);
+ Expect.equals(3, constructor);
+ Expect.equals(4, prototype);
+ }
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698