Skip to content

Commit

Permalink
Exclude compound bindings from configure; revisit later.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpschaaf committed Oct 10, 2015
1 parent c30ac10 commit 1035e2d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/standard/configure.html
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,9 @@
var fx = fx$[p];
if (fx) {
for (var i=0, l=fx.length, x; (i<l) && (x=fx[i]); i++) {
if (x.kind === 'annotation') {
// TODO(kschaaf): compound bindings (as well as computed effects)
// are excluded from top-down configure for now; to be revisited
if (x.kind === 'annotation' && !x.isCompound) {
var node = this._nodes[x.effect.index];
// seeding configuration only
if (node._configValue) {
Expand Down

0 comments on commit 1035e2d

Please sign in to comment.