| 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 52122a4b0e9a30982c7b8ff8cd32b4f7a3cbd62f..4387ef1168e5dcc830d21f94f599e86cf1123b0e 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/resolution/members.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/resolution/members.dart
|
| @@ -603,7 +603,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.
|
| @@ -1156,7 +1156,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);
|
| }
|
|
|