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

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

Issue 772423004: Fix for issue 18244 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/analyzer/lib/src/generated/parser.dart ('k') | 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 45c7672f7b61d0667aca6e720e53ef69f52eb21e..566126ce58fe07dd3cb4893fa95cb08ad5aefca5 100644
--- a/pkg/analyzer/test/generated/parser_test.dart
+++ b/pkg/analyzer/test/generated/parser_test.dart
@@ -1921,6 +1921,22 @@ class ErrorParserTest extends ParserTestCase {
[ParserErrorCode.MISSING_KEYWORD_OPERATOR]);
}
+ void test_missingMethodParameters_void_block() {
+ ParserTestCase.parse3(
+ "parseClassMember",
+ <Object>["C"],
+ "void m {} }",
+ [ParserErrorCode.MISSING_METHOD_PARAMETERS]);
+ }
+
+ void test_missingMethodParameters_void_expression() {
+ ParserTestCase.parse3(
+ "parseClassMember",
+ <Object>["C"],
+ "void m => null; }",
+ [ParserErrorCode.MISSING_METHOD_PARAMETERS]);
+ }
+
void test_missingNameInLibraryDirective() {
CompilationUnit unit = ParserTestCase.parseCompilationUnit(
"library;",
« no previous file with comments | « pkg/analyzer/lib/src/generated/parser.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698