Skip to content

Commit 9afcb00

Browse files
committed
fix: wtf paramater passing on scope
Closes angular#3726
1 parent bde6416 commit 9afcb00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/angular2/src/profile/wtf_impl.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ dynamic createScope(String signature, [flags]) {
7070
return ([arg0, arg1]) {
7171
_arg2[0] = arg0;
7272
_arg2[1] = arg1;
73-
return jsScope.apply(_arg1);
73+
return jsScope.apply(_arg2);
7474
};
7575
default:
7676
throw "Max 2 arguments are supported.";

0 commit comments

Comments
 (0)