| Index: sdk/lib/_internal/compiler/implementation/resolution/members.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/resolution/members.dart b/sdk/lib/_internal/compiler/implementation/resolution/members.dart
|
| index bf9e205e60330678571e986d56a245a46a6f9d88..2b2db688c1d0f6a90f4f1bcad629ab1a9318180e 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/resolution/members.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/resolution/members.dart
|
| @@ -583,7 +583,7 @@ class ResolverTask extends CompilerTask {
|
| return result;
|
| }
|
|
|
| - void resolveRedirectionChain(FunctionElement constructor, Spannable node) {
|
| + void resolveRedirectionChain(FunctionElement constructor, Node node) {
|
| FunctionElementX current = constructor;
|
| List<Element> seen = new List<Element>();
|
| // Follow the chain of redirections and check for cycles.
|
| @@ -1136,7 +1136,7 @@ class ResolverTask extends CompilerTask {
|
| }));
|
| }
|
|
|
| - error(Spannable node, MessageKind kind, [arguments = const {}]) {
|
| + error(Node node, MessageKind kind, [arguments = const {}]) {
|
| // TODO(ahe): Make non-fatal.
|
| compiler.reportFatalError(node, kind, arguments);
|
| }
|
|
|