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

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

Issue 10880040: Support abstract getters without parameters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Update language.status 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
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 // Test to ensure that an abstract getter is not mistaken for a field.
6
7 class Foo {
8 abstract get i;
9 }
10
11 class Bar {
12 }
13
14 noMethod(e) => e is NoSuchMethodException;
15
16 checkIt(f) {
17 Expect.throws(() { f.i = 'hi'; }, noMethod);
18 Expect.throws(() { print(f.i); }, noMethod);
19 Expect.throws(() { print(f.i()); }, noMethod);
20 }
21
22 main() {
23 checkIt(new Foo());
24 checkIt(new Bar());
25 }
OLDNEW
« no previous file with comments | « dart/tests/compiler/dart2js_foreign/native_property_test.dart ('k') | dart/tests/language/language_dart2js.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698