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

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

Issue 109853003: New analyzer snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixes for review comments. Created 7 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/test/generated/element_test.dart ('k') | pkg/analyzer/test/generated/resolver_test.dart » ('j') | 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 337212a273b91db155145a04213c0064d8cb744d..81c03068811263d3143e4525029df4f4902c7a53 100644
--- a/pkg/analyzer/test/generated/parser_test.dart
+++ b/pkg/analyzer/test/generated/parser_test.dart
@@ -499,7 +499,7 @@ class SimpleParserTest extends ParserTestCase {
}
void test_parseAssignableSelector_none() {
- SimpleIdentifier selector = ParserTestCase.parse("parseAssignableSelector", <Object> [new SimpleIdentifier.full(null), true], ";");
+ SimpleIdentifier selector = ParserTestCase.parse("parseAssignableSelector", <Object> [new SimpleIdentifier(null), true], ";");
JUnitTestCase.assertNotNull(selector);
}
@@ -2538,7 +2538,7 @@ class SimpleParserTest extends ParserTestCase {
void test_parseFunctionDeclaration_function() {
Comment comment = Comment.createDocumentationComment(new List<Token>(0));
- TypeName returnType = new TypeName.full(new SimpleIdentifier.full(null), null);
+ TypeName returnType = new TypeName(new SimpleIdentifier(null), null);
FunctionDeclaration declaration = ParserTestCase.parse("parseFunctionDeclaration", <Object> [commentAndMetadata(comment, []), null, returnType], "f() {}");
JUnitTestCase.assertEquals(comment, declaration.documentationComment);
JUnitTestCase.assertEquals(returnType, declaration.returnType);
@@ -2552,7 +2552,7 @@ class SimpleParserTest extends ParserTestCase {
void test_parseFunctionDeclaration_getter() {
Comment comment = Comment.createDocumentationComment(new List<Token>(0));
- TypeName returnType = new TypeName.full(new SimpleIdentifier.full(null), null);
+ TypeName returnType = new TypeName(new SimpleIdentifier(null), null);
FunctionDeclaration declaration = ParserTestCase.parse("parseFunctionDeclaration", <Object> [commentAndMetadata(comment, []), null, returnType], "get p => 0;");
JUnitTestCase.assertEquals(comment, declaration.documentationComment);
JUnitTestCase.assertEquals(returnType, declaration.returnType);
@@ -2566,7 +2566,7 @@ class SimpleParserTest extends ParserTestCase {
void test_parseFunctionDeclaration_setter() {
Comment comment = Comment.createDocumentationComment(new List<Token>(0));
- TypeName returnType = new TypeName.full(new SimpleIdentifier.full(null), null);
+ TypeName returnType = new TypeName(new SimpleIdentifier(null), null);
FunctionDeclaration declaration = ParserTestCase.parse("parseFunctionDeclaration", <Object> [commentAndMetadata(comment, []), null, returnType], "set p(v) {}");
JUnitTestCase.assertEquals(comment, declaration.documentationComment);
JUnitTestCase.assertEquals(returnType, declaration.returnType);
@@ -2598,7 +2598,7 @@ class SimpleParserTest extends ParserTestCase {
void test_parseGetter_nonStatic() {
Comment comment = Comment.createDocumentationComment(new List<Token>(0));
- TypeName returnType = new TypeName.full(new SimpleIdentifier.full(null), null);
+ TypeName returnType = new TypeName(new SimpleIdentifier(null), null);
MethodDeclaration method = ParserTestCase.parse("parseGetter", <Object> [commentAndMetadata(comment, []), null, null, returnType], "get a;");
JUnitTestCase.assertNotNull(method.body);
JUnitTestCase.assertEquals(comment, method.documentationComment);
@@ -2614,7 +2614,7 @@ class SimpleParserTest extends ParserTestCase {
void test_parseGetter_static() {
Comment comment = Comment.createDocumentationComment(new List<Token>(0));
Token staticKeyword = TokenFactory.token(Keyword.STATIC);
- TypeName returnType = new TypeName.full(new SimpleIdentifier.full(null), null);
+ TypeName returnType = new TypeName(new SimpleIdentifier(null), null);
MethodDeclaration method = ParserTestCase.parse("parseGetter", <Object> [
commentAndMetadata(comment, []),
null,
@@ -2760,7 +2760,7 @@ class SimpleParserTest extends ParserTestCase {
void test_parseInitializedIdentifierList_type() {
Comment comment = Comment.createDocumentationComment(new List<Token>(0));
Token staticKeyword = TokenFactory.token(Keyword.STATIC);
- TypeName type = new TypeName.full(new SimpleIdentifier.full(null), null);
+ TypeName type = new TypeName(new SimpleIdentifier(null), null);
FieldDeclaration declaration = ParserTestCase.parse("parseInitializedIdentifierList", <Object> [
commentAndMetadata(comment, []),
staticKeyword,
@@ -3295,7 +3295,7 @@ class SimpleParserTest extends ParserTestCase {
void test_parseOperator() {
Comment comment = Comment.createDocumentationComment(new List<Token>(0));
- TypeName returnType = new TypeName.full(new SimpleIdentifier.full(null), null);
+ TypeName returnType = new TypeName(new SimpleIdentifier(null), null);
MethodDeclaration method = ParserTestCase.parse("parseOperator", <Object> [commentAndMetadata(comment, []), null, returnType], "operator +(A a);");
JUnitTestCase.assertNotNull(method.body);
JUnitTestCase.assertEquals(comment, method.documentationComment);
@@ -3582,7 +3582,7 @@ class SimpleParserTest extends ParserTestCase {
void test_parseSetter_nonStatic() {
Comment comment = Comment.createDocumentationComment(new List<Token>(0));
- TypeName returnType = new TypeName.full(new SimpleIdentifier.full(null), null);
+ TypeName returnType = new TypeName(new SimpleIdentifier(null), null);
MethodDeclaration method = ParserTestCase.parse("parseSetter", <Object> [commentAndMetadata(comment, []), null, null, returnType], "set a(var x);");
JUnitTestCase.assertNotNull(method.body);
JUnitTestCase.assertEquals(comment, method.documentationComment);
@@ -3598,7 +3598,7 @@ class SimpleParserTest extends ParserTestCase {
void test_parseSetter_static() {
Comment comment = Comment.createDocumentationComment(new List<Token>(0));
Token staticKeyword = TokenFactory.token(Keyword.STATIC);
- TypeName returnType = new TypeName.full(new SimpleIdentifier.full(null), null);
+ TypeName returnType = new TypeName(new SimpleIdentifier(null), null);
MethodDeclaration method = ParserTestCase.parse("parseSetter", <Object> [
commentAndMetadata(comment, []),
null,
@@ -4234,7 +4234,7 @@ class SimpleParserTest extends ParserTestCase {
}
void test_parseVariableDeclarationList2_type() {
- TypeName type = new TypeName.full(new SimpleIdentifier.full(null), null);
+ TypeName type = new TypeName(new SimpleIdentifier(null), null);
VariableDeclarationList declarationList = ParserTestCase.parse("parseVariableDeclarationList", <Object> [emptyCommentAndMetadata(), null, type], "a");
JUnitTestCase.assertNull(declarationList.keyword);
JUnitTestCase.assertEquals(type, declarationList.type);
@@ -4404,7 +4404,7 @@ class SimpleParserTest extends ParserTestCase {
* @throws Exception if the method could not be invoked or throws an exception
*/
String computeStringValue(String lexeme, bool first, bool last) {
- AnalysisErrorListener listener = new AnalysisErrorListener_26();
+ AnalysisErrorListener listener = new AnalysisErrorListener_27();
Parser parser = new Parser(null, listener);
return invokeParserMethodImpl(parser, "computeStringValue", <Object> [lexeme, first, last], null) as String;
}
@@ -6674,7 +6674,7 @@ class SimpleParserTest extends ParserTestCase {
}
}
-class AnalysisErrorListener_26 implements AnalysisErrorListener {
+class AnalysisErrorListener_27 implements AnalysisErrorListener {
void onError(AnalysisError event) {
JUnitTestCase.fail("Unexpected compilation error: ${event.message} (${event.offset}, ${event.length})");
}
@@ -9143,7 +9143,7 @@ class RecoveryParserTest extends ParserTestCase {
}
class IncrementalParserTest extends EngineTestCase {
- void fail_delete_everything() {
+ void test_delete_everything() {
assertParse("", "f() => a + b;", "", "");
}
@@ -9199,6 +9199,14 @@ class IncrementalParserTest extends EngineTestCase {
assertParse("f() => a;", "", "b", " c;");
}
+ void test_insert_newIdentifier3() {
+ assertParse("/** A simple function. */ f() => a;", "", " b", " c;");
+ }
+
+ void test_insert_newIdentifier4() {
+ assertParse("/** An [A]. */ class A {} class B { m() { return 1", "", " + 2", "; } }");
+ }
+
void test_insert_period() {
assertParse("f() => a + b", "", ".", ";");
}
@@ -9223,6 +9231,10 @@ class IncrementalParserTest extends EngineTestCase {
assertParse("f() => a + b", "", ".x", ";");
}
+ void test_insert_simpleToComplexExression() {
+ assertParse("/** An [A]. */ class A {} class B { m() => 1", "", " + 2", "; }");
+ }
+
void test_insert_whitespace_end() {
assertParse("f() => a + b;", "", " ", "");
}
@@ -9299,6 +9311,10 @@ class IncrementalParserTest extends EngineTestCase {
static dartSuite() {
_ut.group('IncrementalParserTest', () {
+ _ut.test('test_delete_everything', () {
+ final __test = new IncrementalParserTest();
+ runJUnitTest(__test, __test.test_delete_everything);
+ });
_ut.test('test_delete_identifier_beginning', () {
final __test = new IncrementalParserTest();
runJUnitTest(__test, __test.test_delete_identifier_beginning);
@@ -9351,6 +9367,14 @@ class IncrementalParserTest extends EngineTestCase {
final __test = new IncrementalParserTest();
runJUnitTest(__test, __test.test_insert_newIdentifier2);
});
+ _ut.test('test_insert_newIdentifier3', () {
+ final __test = new IncrementalParserTest();
+ runJUnitTest(__test, __test.test_insert_newIdentifier3);
+ });
+ _ut.test('test_insert_newIdentifier4', () {
+ final __test = new IncrementalParserTest();
+ runJUnitTest(__test, __test.test_insert_newIdentifier4);
+ });
_ut.test('test_insert_period', () {
final __test = new IncrementalParserTest();
runJUnitTest(__test, __test.test_insert_period);
@@ -9375,6 +9399,10 @@ class IncrementalParserTest extends EngineTestCase {
final __test = new IncrementalParserTest();
runJUnitTest(__test, __test.test_insert_period_insideExistingIdentifier);
});
+ _ut.test('test_insert_simpleToComplexExression', () {
+ final __test = new IncrementalParserTest();
+ runJUnitTest(__test, __test.test_insert_simpleToComplexExression);
+ });
_ut.test('test_insert_whitespace_end', () {
final __test = new IncrementalParserTest();
runJUnitTest(__test, __test.test_insert_whitespace_end);
« no previous file with comments | « pkg/analyzer/test/generated/element_test.dart ('k') | pkg/analyzer/test/generated/resolver_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698