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

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

Issue 1159563004: Rename Element.node (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 7 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 | « pkg/analyzer/test/generated/element_test.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/resolver_test.dart
diff --git a/pkg/analyzer/test/generated/resolver_test.dart b/pkg/analyzer/test/generated/resolver_test.dart
index 5a62cc17d3e3c89c90901c1462b8210b358c0fd5..9ad5144e6474a70a0a18c4920bf08005d3793f1f 100644
--- a/pkg/analyzer/test/generated/resolver_test.dart
+++ b/pkg/analyzer/test/generated/resolver_test.dart
@@ -8076,7 +8076,7 @@ void main() {
// Verify that both the getter and setter for "x" in "new C().x" refer to
// the accessors defined in M2.
FunctionDeclaration main =
- library.definingCompilationUnit.functions[0].node;
+ library.definingCompilationUnit.functions[0].computeNode();
BlockFunctionBody body = main.functionExpression.body;
ExpressionStatement stmt = body.block.statements[0];
AssignmentExpression assignment = stmt.expression;
@@ -8217,7 +8217,7 @@ class A {
AssignmentExpression assignment;
{
FunctionElement mainElement = unit.functions[0];
- FunctionBody mainBody = mainElement.node.functionExpression.body;
+ FunctionBody mainBody = mainElement.computeNode().functionExpression.body;
Statement statement = (mainBody as BlockFunctionBody).block.statements[1];
ExpressionStatement expressionStatement =
statement as ExpressionStatement;
@@ -8253,7 +8253,7 @@ class B {
AssignmentExpression assignment;
{
FunctionElement mainElement = unit.functions[0];
- FunctionBody mainBody = mainElement.node.functionExpression.body;
+ FunctionBody mainBody = mainElement.computeNode().functionExpression.body;
Statement statement = (mainBody as BlockFunctionBody).block.statements[1];
ExpressionStatement expressionStatement =
statement as ExpressionStatement;
@@ -8286,7 +8286,7 @@ class A {
AssignmentExpression assignment;
{
FunctionElement mainElement = unit.functions[0];
- FunctionBody mainBody = mainElement.node.functionExpression.body;
+ FunctionBody mainBody = mainElement.computeNode().functionExpression.body;
Statement statement = (mainBody as BlockFunctionBody).block.statements[1];
ExpressionStatement expressionStatement =
statement as ExpressionStatement;
@@ -8321,7 +8321,7 @@ class B {
AssignmentExpression assignment;
{
FunctionElement mainElement = unit.functions[0];
- FunctionBody mainBody = mainElement.node.functionExpression.body;
+ FunctionBody mainBody = mainElement.computeNode().functionExpression.body;
Statement statement = (mainBody as BlockFunctionBody).block.statements[1];
ExpressionStatement expressionStatement =
statement as ExpressionStatement;
@@ -8797,7 +8797,7 @@ class C extends B with M1, M2 {
// Verify that both the getter and setter for "x" in C.f() refer to the
// accessors defined in M2.
ClassElement classC = library.definingCompilationUnit.types[3];
- MethodDeclaration f = classC.getMethod('f').node;
+ MethodDeclaration f = classC.getMethod('f').computeNode();
BlockFunctionBody body = f.body;
ExpressionStatement stmt = body.block.statements[0];
AssignmentExpression assignment = stmt.expression;
@@ -8828,7 +8828,7 @@ class C extends B with M1, M2 {
// Verify that the getter for "x" in C.f() refers to the getter defined in
// M2.
ClassElement classC = library.definingCompilationUnit.types[3];
- MethodDeclaration f = classC.getMethod('f').node;
+ MethodDeclaration f = classC.getMethod('f').computeNode();
BlockFunctionBody body = f.body;
ReturnStatement stmt = body.block.statements[0];
SimpleIdentifier x = stmt.expression;
@@ -8855,7 +8855,7 @@ void main() {
// Verify that the getter for "x" in "new C().x" refers to the getter
// defined in M2.
FunctionDeclaration main =
- library.definingCompilationUnit.functions[0].node;
+ library.definingCompilationUnit.functions[0].computeNode();
BlockFunctionBody body = main.functionExpression.body;
VariableDeclarationStatement stmt = body.block.statements[0];
PropertyAccess propertyAccess = stmt.variables.variables[0].initializer;
@@ -9367,7 +9367,7 @@ void main() {
verify([source]);
// Verify that the "f" in "new C().f()" refers to the "f" defined in M2.
FunctionDeclaration main =
- library.definingCompilationUnit.functions[0].node;
+ library.definingCompilationUnit.functions[0].computeNode();
BlockFunctionBody body = main.functionExpression.body;
ExpressionStatement stmt = body.block.statements[0];
MethodInvocation expr = stmt.expression;
@@ -9394,7 +9394,7 @@ class C extends B with M1, M2 {
verify([source]);
// Verify that the call to f() in C.g() refers to the method defined in M2.
ClassElement classC = library.definingCompilationUnit.types[3];
- MethodDeclaration g = classC.getMethod('g').node;
+ MethodDeclaration g = classC.getMethod('g').computeNode();
BlockFunctionBody body = g.body;
ExpressionStatement stmt = body.block.statements[0];
MethodInvocation invocation = stmt.expression;
@@ -9422,7 +9422,7 @@ void main() {
// Verify that the call to f() in "new C().f()" refers to the method
// defined in M2.
FunctionDeclaration main =
- library.definingCompilationUnit.functions[0].node;
+ library.definingCompilationUnit.functions[0].computeNode();
BlockFunctionBody body = main.functionExpression.body;
ExpressionStatement stmt = body.block.statements[0];
MethodInvocation invocation = stmt.expression;
@@ -9511,7 +9511,7 @@ class C extends B with M1, M2 {
// Verify that the setter for "x" in C.f() refers to the setter defined in
// M2.
ClassElement classC = library.definingCompilationUnit.types[3];
- MethodDeclaration f = classC.getMethod('f').node;
+ MethodDeclaration f = classC.getMethod('f').computeNode();
BlockFunctionBody body = f.body;
ExpressionStatement stmt = body.block.statements[0];
AssignmentExpression assignment = stmt.expression;
@@ -9539,7 +9539,7 @@ void main() {
// Verify that the setter for "x" in "new C().x" refers to the setter
// defined in M2.
FunctionDeclaration main =
- library.definingCompilationUnit.functions[0].node;
+ library.definingCompilationUnit.functions[0].computeNode();
BlockFunctionBody body = main.functionExpression.body;
ExpressionStatement stmt = body.block.statements[0];
AssignmentExpression assignment = stmt.expression;
« no previous file with comments | « pkg/analyzer/test/generated/element_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698