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

Unified Diff: dart/lib/compiler/implementation/native_handler.dart

Issue 10413073: Fix type error. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/lib/compiler/implementation/native_handler.dart
diff --git a/dart/lib/compiler/implementation/native_handler.dart b/dart/lib/compiler/implementation/native_handler.dart
index 7da59ad4d1794c498b4eb1d7d33569d77b86a77e..c567532d78103529d19e7cb1502c6e56807e5c7d 100644
--- a/dart/lib/compiler/implementation/native_handler.dart
+++ b/dart/lib/compiler/implementation/native_handler.dart
@@ -60,7 +60,7 @@ void processNativeClassesInLibrary(CodeEmitterTask emitter,
}
if (hasNativeClass) {
final worlds = [compiler.enqueuer.resolution, compiler.enqueuer.codegen];
- for (Universe world in worlds) {
+ for (var world in worlds) {
world.registerStaticUse(compiler.findHelper(
const SourceString('dynamicFunction')));
world.registerStaticUse(compiler.findHelper(
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698