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

Unified Diff: pkg/analyzer/test/generated/parser_test.dart

Issue 1025233002: (TBR) fix the build (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 9 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/test/generated/parser_test.dart
diff --git a/pkg/analyzer/test/generated/parser_test.dart b/pkg/analyzer/test/generated/parser_test.dart
index 4a9c8255e74757f8b02ef1a2a6e8d37759f8105a..648ea6bfa913931cbcdf119ebd4e015801ca4fba 100644
--- a/pkg/analyzer/test/generated/parser_test.dart
+++ b/pkg/analyzer/test/generated/parser_test.dart
@@ -8767,7 +8767,7 @@ void''');
}
void test_parseStatement_emptyTypeArgumentListt() {
- VariableDeclarationStatement statement = ParserTestCase.parse4(
+ VariableDeclarationStatement statement = parse4(
"parseStatement", "C<> c;", [ParserErrorCode.EXPECTED_TYPE_NAME]);
VariableDeclarationList variables = statement.variables;
TypeName type = variables.type;
@@ -9144,7 +9144,7 @@ void''');
}
void test_parseTypeArgumentList_empty() {
- TypeArgumentList argumentList = ParserTestCase.parse4(
+ TypeArgumentList argumentList = parse4(
"parseTypeArgumentList", "<>", [ParserErrorCode.EXPECTED_TYPE_NAME]);
expect(argumentList.leftBracket, isNotNull);
expect(argumentList.arguments, hasLength(1));
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698