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

Unified Diff: lib/runtime/dart_runtime.js

Issue 1002443002: minor code cleanup (Closed) Base URL: git@github.com:dart-lang/dart-dev-compiler.git@master
Patch Set: Created 5 years, 9 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 | « lib/runtime/dart_core.js ('k') | lib/runtime/run.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart_runtime.js
diff --git a/lib/runtime/dart_runtime.js b/lib/runtime/dart_runtime.js
index 041ad24ae10ffbf38af038d9acee8ff54145ea8a..8d602e0430e8b10a5211cbd037152fe3eebaed77 100644
--- a/lib/runtime/dart_runtime.js
+++ b/lib/runtime/dart_runtime.js
@@ -21,7 +21,7 @@ var dart;
argDecl = fnText.match(FN_ARGS);
var r = argDecl[1].split(FN_ARG_SPLIT);
- for(var a in r){
+ for(var a in r) {
var arg = r[a];
arg.replace(FN_ARG, function(all, underscore, name){
args.push(name);
« no previous file with comments | « lib/runtime/dart_core.js ('k') | lib/runtime/run.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698