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