We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c30ac10 commit 1035e2dCopy full SHA for 1035e2d
src/standard/configure.html
@@ -131,7 +131,9 @@
131
var fx = fx$[p];
132
if (fx) {
133
for (var i=0, l=fx.length, x; (i<l) && (x=fx[i]); i++) {
134
- if (x.kind === 'annotation') {
+ // 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) {
137
var node = this._nodes[x.effect.index];
138
// seeding configuration only
139
if (node._configValue) {
0 commit comments