Skip to content

Commit 1035e2d

Browse files
committed
Exclude compound bindings from configure; revisit later.
1 parent c30ac10 commit 1035e2d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/standard/configure.html

+3-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,9 @@
131131
var fx = fx$[p];
132132
if (fx) {
133133
for (var i=0, l=fx.length, x; (i<l) && (x=fx[i]); i++) {
134-
if (x.kind === 'annotation') {
134+
// TODO(kschaaf): compound bindings (as well as computed effects)
135+
// are excluded from top-down configure for now; to be revisited
136+
if (x.kind === 'annotation' && !x.isCompound) {
135137
var node = this._nodes[x.effect.index];
136138
// seeding configuration only
137139
if (node._configValue) {

0 commit comments

Comments
 (0)