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

Unified Diff: sdk/lib/_internal/compiler/implementation/resolution/members.dart

Issue 27529003: Revert "Reapply "Add TypeVariable object on runtime to support reflection on type variables." and "… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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: 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 9861ae5bdf7d90edde1ca7d4b052bfb633f71f4a..c5fb6306b174ed004d28418a2465667fdbe58e8e 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);
}

Powered by Google App Engine
This is Rietveld 408576698