-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Description
Template bodies that have more than one apply call can be optimized in a following way:
apply(...);
apply(...);
apply(...);could be transformed
var _applies = _getApplies(this);
_applies[0](...);
_applies[1](...);
_applies[2](...);_getApplies will do template matching to go as deep as possible in xjst's decision tree
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels