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

Side by Side Diff: pkg/analyzer/lib/src/generated/java_junit.dart

Issue 45573002: Rename analyzer_experimental to analyzer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Tweaks before publishing. Created 7 years, 1 month 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
« no previous file with comments | « pkg/analyzer/lib/src/generated/java_io.dart ('k') | pkg/analyzer/lib/src/generated/parser.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 library java.junit; 1 library java.junit;
2 2
3 import 'package:unittest/unittest.dart' hide fail; 3 import 'package:unittest/unittest.dart' hide fail;
4 import 'package:unittest/unittest.dart' as _ut show fail; 4 import 'package:unittest/unittest.dart' as _ut show fail;
5 5
6 6
7 class JUnitTestCase { 7 class JUnitTestCase {
8 void setUp() {} 8 void setUp() {}
9 void tearDown() {} 9 void tearDown() {}
10 static void fail(String msg) { 10 static void fail(String msg) {
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 class _IsNotNullWithMessage extends Matcher { 117 class _IsNotNullWithMessage extends Matcher {
118 final String msg; 118 final String msg;
119 const _IsNotNullWithMessage(this.msg); 119 const _IsNotNullWithMessage(this.msg);
120 bool matches(item, Map matchState) { 120 bool matches(item, Map matchState) {
121 return item != null; 121 return item != null;
122 } 122 }
123 Description describe(Description mismatchDescription) { 123 Description describe(Description mismatchDescription) {
124 return mismatchDescription.replace(msg); 124 return mismatchDescription.replace(msg);
125 } 125 }
126 } 126 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/generated/java_io.dart ('k') | pkg/analyzer/lib/src/generated/parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698