Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit edb554a

Browse files
committed
refactor($parse): name anonymous fns for easier debugging and profiling
1 parent 3f10092 commit edb554a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ng/parse.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ Parser.prototype = {
494494
},
495495

496496
unaryFn: function(fn, right) {
497-
return extend(function(self, locals) {
497+
return extend(function $parseUnaryFn(self, locals) {
498498
return fn(self, locals, right);
499499
}, {
500500
constant:right.constant,
@@ -503,15 +503,15 @@ Parser.prototype = {
503503
},
504504

505505
ternaryFn: function(left, middle, right){
506-
return extend(function(self, locals){
506+
return extend(function $parseTernaryFn(self, locals){
507507
return left(self, locals) ? middle(self, locals) : right(self, locals);
508508
}, {
509509
constant: left.constant && middle.constant && right.constant
510510
});
511511
},
512512

513513
binaryFn: function(left, fn, right, isBranching) {
514-
return extend(function(self, locals) {
514+
return extend(function $parseBinaryFn(self, locals) {
515515
return fn(self, locals, left, right);
516516
}, {
517517
constant: left.constant && right.constant,

0 commit comments

Comments
 (0)