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

Unified Diff: compiler/lib/implementation/core.js

Issue 8724005: Missing scope variable causing build error for dartcombat (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Status file update Created 9 years, 1 month 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 | « client/tests/client/client.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiler/lib/implementation/core.js
diff --git a/compiler/lib/implementation/core.js b/compiler/lib/implementation/core.js
index 12456e177d59536d665a777addf1551aa8f82320..433d22373ef42e805562608be1b62d1906cc6cf8 100644
--- a/compiler/lib/implementation/core.js
+++ b/compiler/lib/implementation/core.js
@@ -115,7 +115,7 @@ function $bind3_1(fn, thisObj, scope1, scope2, scope3) {
}
function $bind3_2(fn, thisObj, scope1, scope2, scope3) {
return function(arg1, arg2) {
- return fn.call(thisObj, scope1, scope2, arg1, arg2);
+ return fn.call(thisObj, scope1, scope2, scope3, arg1, arg2);
}
}
function $bind3_3(fn, thisObj, scope1, scope2, scope3) {
« no previous file with comments | « client/tests/client/client.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698