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

Side by Side Diff: tests/language/abstract_getter_test.dart

Issue 10899039: Add compiler error when instantiating abstract class (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // Test to ensure that an abstract getter is not mistaken for a field. 5 // Test to ensure that an abstract getter is not mistaken for a field.
6 6
7 class Foo { 7 class Foo {
8 abstract get i; 8 abstract get i;
9 } 9 }
10 10
11 class Bar { 11 class Bar {
12 } 12 }
13 13
14 noMethod(e) => e is NoSuchMethodException; 14 noMethod(e) => e is NoSuchMethodException;
15 15
16 checkIt(f) { 16 checkIt(f) {
17 Expect.throws(() { f.i = 'hi'; }, noMethod); 17 Expect.throws(() { f.i = 'hi'; }, noMethod);
18 Expect.throws(() { print(f.i); }, noMethod); 18 Expect.throws(() { print(f.i); }, noMethod);
19 Expect.throws(() { print(f.i()); }, noMethod); 19 Expect.throws(() { print(f.i()); }, noMethod);
20 } 20 }
21 21
22 main() { 22 main() {
23 checkIt(new Foo()); 23 checkIt(new Foo()); /// 01: compile-time error
24 checkIt(new Bar()); 24 checkIt(new Bar());
25 } 25 }
OLDNEW
« no previous file with comments | « tests/language/abstract_factory_constructor_test.dart ('k') | tests/language/empty_body_member_negative_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698