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

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

Issue 1039713002: Rename MethodInvocation.period to MethodInvocation.operator. (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
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 648ea6bfa913931cbcdf119ebd4e015801ca4fba..1b2b98fe5f4d028f06bdc550902874076ede3946 100644
--- a/pkg/analyzer/test/generated/parser_test.dart
+++ b/pkg/analyzer/test/generated/parser_test.dart
@@ -4996,7 +4996,7 @@ class SimpleParserTest extends ParserTestCase {
MethodInvocation section = parse4("parseCascadeSection", "..a(b).c(d)");
EngineTestCase.assertInstanceOf(
(obj) => obj is MethodInvocation, MethodInvocation, section.target);
- expect(section.period, isNotNull);
+ expect(section.operator, isNotNull);
expect(section.methodName, isNotNull);
expect(section.argumentList, isNotNull);
expect(section.argumentList.arguments, hasLength(1));
@@ -5037,7 +5037,7 @@ class SimpleParserTest extends ParserTestCase {
void test_parseCascadeSection_pa() {
MethodInvocation section = parse4("parseCascadeSection", "..a(b)");
expect(section.target, isNull);
- expect(section.period, isNotNull);
+ expect(section.operator, isNotNull);
expect(section.methodName, isNotNull);
expect(section.argumentList, isNotNull);
expect(section.argumentList.arguments, hasLength(1));
« pkg/analyzer/lib/src/generated/ast.dart ('K') | « 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