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

Unified Diff: dart/tests/try/poi/data/abstract_field.dart

Issue 463323003: Fix crash due to AbstractFieldElement.computeType. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Merged with r39363. Created 6 years, 4 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 | « dart/site/try/poi/poi.dart ('k') | dart/tests/try/poi/serialize_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tests/try/poi/data/abstract_field.dart
diff --git a/dart/tests/try/poi/data/interesting.dart b/dart/tests/try/poi/data/abstract_field.dart
similarity index 59%
copy from dart/tests/try/poi/data/interesting.dart
copy to dart/tests/try/poi/data/abstract_field.dart
index 9f39d9d5d2eab4e0d7e6ad9be4a4c3c835fa7aa2..cc793b92dca09e8ba0732e09bd58a0762f4dc6d7 100644
--- a/dart/tests/try/poi/data/interesting.dart
+++ b/dart/tests/try/poi/data/abstract_field.dart
@@ -2,13 +2,19 @@
// 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.
-library interesting;
+library abstract_field;
-class Foo {
- fisk() {
- }
- hest() {
+class A {
+ String get foo => null;
+
+ set foo(String v) => null;
+
+ method() {
}
}
+String get bar => null;
+
+set bar(String v) => null;
+
main() {}
« no previous file with comments | « dart/site/try/poi/poi.dart ('k') | dart/tests/try/poi/serialize_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698