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

Unified Diff: sdk/lib/_internal/compiler/implementation/universe/universe.dart

Issue 111803002: Implement tracing for function expressions and statements, and infer types of parameters of these c… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years 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/universe/universe.dart
===================================================================
--- sdk/lib/_internal/compiler/implementation/universe/universe.dart (revision 31020)
+++ sdk/lib/_internal/compiler/implementation/universe/universe.dart (working copy)
@@ -321,7 +321,6 @@
}
bool appliesUntyped(Element element, Compiler compiler) {
- assert(sameNameHack(element, compiler));
ngeoffray 2013/12/10 17:11:02 This is now also being called for closure calls, w
kasperl 2013/12/11 07:35:35 Should we get rid of all the sameNameHack stuff?
ngeoffray 2013/12/16 11:47:43 I'll try, but some call sites do tricky things har
if (Elements.isUnresolved(element)) return false;
if (isPrivateName(name) && library != element.getLibrary()) return false;
if (element.isForeign(compiler)) return true;

Powered by Google App Engine
This is Rietveld 408576698