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

Side by Side Diff: tests/language/src/TryCatch3Test.dart

Issue 8619008: Initializing formals can't be optional parameters (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years 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) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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 // Dart test program for testing try/catch statement without any exceptions 4 // Dart test program for testing try/catch statement without any exceptions
5 // being thrown. 5 // being thrown.
6 6
7 interface TestException { 7 interface TestException {
8 String getMessage(); 8 String getMessage();
9 } 9 }
10 10
11 class MyException implements TestException { 11 class MyException implements TestException {
12 const MyException([String this.message_ = ""]); 12 const MyException([String message = ""]) : this._message = message;
13 String getMessage() { return message_; } 13 String getMessage() { return _message; }
14 final String message_; 14 final String _message;
15 } 15 }
16 16
17 class MyParameterizedException<U, V> implements TestException { 17 class MyParameterizedException<U, V> implements TestException {
18 const MyParameterizedException([String this.message_ = ""]); 18 const MyParameterizedException([String message = ""])
19 String getMessage() { return message_; } 19 : this._message = message;
20 final String message_; 20 String getMessage() { return _message; }
21 final String _message;
21 } 22 }
22 23
23 class StackTrace { 24 class StackTrace {
24 StackTrace() { } 25 StackTrace() { }
25 printStackTrace(TestException ex) { 26 printStackTrace(TestException ex) {
26 print(ex); 27 print(ex);
27 } 28 }
28 } 29 }
29 30
30 class Helper { 31 class Helper {
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 106
106 class TryCatchTest { 107 class TryCatchTest {
107 static testMain() { 108 static testMain() {
108 Expect.equals(900, Helper.test1(1)); 109 Expect.equals(900, Helper.test1(1));
109 } 110 }
110 } 111 }
111 112
112 main() { 113 main() {
113 TryCatchTest.testMain(); 114 TryCatchTest.testMain();
114 } 115 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698