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

Unified Diff: tests/language/mixin_illegal_syntax_test.dart

Issue 27300003: Change "typedef" to "class" in core library and related tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update some dart2js tests and unparser. Created 7 years, 2 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 | « tests/language/mixin_illegal_superclass_test.dart ('k') | tests/language/mixin_implements2_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/mixin_illegal_syntax_test.dart
diff --git a/tests/language/mixin_illegal_syntax_test.dart b/tests/language/mixin_illegal_syntax_test.dart
index 6d0177d5fce02def9c1682722c8371b522580fb7..c7b3753f155f64506ff7804d5c997578416c9e89 100644
--- a/tests/language/mixin_illegal_syntax_test.dart
+++ b/tests/language/mixin_illegal_syntax_test.dart
@@ -8,13 +8,13 @@ class M { }
typedef T0 = abstract S with M;
abstract class T0A = S with M;
-typedef T1 = final S with M; /// 01: compile-time error
-typedef T2 = var S with M; /// 02: compile-time error
-typedef T3 = const S with M; /// 03: compile-time error
-typedef T4 = static S with M; /// 04: compile-time error
-typedef T5 = external S with M; /// 05: compile-time error
-typedef T6 = G<int> with M;
-typedef T7 = G<Map<String,int>> with M;
+class T1 = final S with M; /// 01: compile-time error
+class T2 = var S with M; /// 02: compile-time error
+class T3 = const S with M; /// 03: compile-time error
+class T4 = static S with M; /// 04: compile-time error
+class T5 = external S with M; /// 05: compile-time error
+class T6 = G<int> with M;
+class T7 = G<Map<String,int>> with M;
class C0 extends abstract S with M { } /// 06: compile-time error
class C1 extends final S with M { } /// 07: compile-time error
« no previous file with comments | « tests/language/mixin_illegal_superclass_test.dart ('k') | tests/language/mixin_implements2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698