| Index: tests/language/try_catch_syntax_test.dart
|
| diff --git a/tests/language/try_catch_syntax_test.dart b/tests/language/try_catch_syntax_test.dart
|
| index b153d843980b8c7c6c8de237f3b73b33e72e1b03..518d3dca17a6a949fd98355605469e61336def02 100644
|
| --- a/tests/language/try_catch_syntax_test.dart
|
| +++ b/tests/language/try_catch_syntax_test.dart
|
| @@ -12,13 +12,13 @@ main() {
|
| }
|
|
|
| testMissingCatch() {
|
| - try { } /// 01: compile-time error
|
| + try { } // /// 01: compile-time error
|
| }
|
|
|
| testMissingTry() {
|
| - on Exception catch (e) { } /// 02: compile-time error
|
| - on Exception catch (e, trace) { } /// 03: compile-time error
|
| - finally { } /// 04: compile-time error
|
| + on Exception catch (e) { } // /// 02: compile-time error
|
| + on Exception catch (e, trace) { } // /// 03: compile-time error
|
| + finally { } // /// 04: compile-time error
|
| }
|
|
|
| testDuplicateCatchVariable() {
|
| @@ -30,18 +30,18 @@ testIllegalFinally() {
|
| }
|
|
|
| testIllegalCatch() {
|
| - try { } catch () { } /// 07: compile-time error
|
| + try { } catch () { } // /// 07: compile-time error
|
| try { } on MammaMia catch (e) { } /// 08: static type warning
|
| - try { } catch (var e) { } /// 09: compile-time error
|
| - try { } catch (final e) { } /// 10: compile-time error
|
| - try { } catch (int e) { } /// 11: compile-time error
|
| - try { } catch (final int e) { } /// 12: compile-time error
|
| - try { } catch ([e, s]) { } /// 13: compile-time error
|
| - try { } catch (e, [s]) { } /// 14: compile-time error
|
| - try { } catch (e, [s0, s1]) { } /// 15: compile-time error
|
| + try { } catch (var e) { } // /// 09: compile-time error
|
| + try { } catch (final e) { } // /// 10: compile-time error
|
| + try { } catch (int e) { } // /// 11: compile-time error
|
| + try { } catch (final int e) { } // /// 12: compile-time error
|
| + try { } catch ([e, s]) { } // /// 13: compile-time error
|
| + try { } catch (e, [s]) { } // /// 14: compile-time error
|
| + try { } catch (e, [s0, s1]) { } // /// 15: compile-time error
|
| }
|
|
|
| testIllegalRethrow() {
|
| - try { rethrow; } catch (e) { } /// 16: compile-time error
|
| + try { rethrow; } catch (e) { } // /// 16: compile-time error
|
| try { } catch (e) { } finally { rethrow; } /// 17: compile-time error
|
| }
|
|
|