Skip to content

Commit 605d995

Browse files
committed
set outp
1 parent 1252d67 commit 605d995

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/benchmark/FJCreate.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ export class FJCreator extends Reactor {
6262
}
6363
)
6464
}
65+
this.outp.asWritable(this._getKey(this.outp)).set(69.420);
6566
}
6667
}
6768

src/core/reactor.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ export abstract class Reactor extends Component {
392392
return owner._getKey(component, this._keyChain.get(owner));
393393
}
394394
} else if (allowCreatorKey ?? false) {
395-
console.log("trying to get key......")
395+
// console.log("trying to get key......")
396396
return component.getContainer()._getKey(component, this._creatorKeyChain.get(component.getContainer()));
397397
}
398398
}
@@ -1247,7 +1247,7 @@ export abstract class Reactor extends Component {
12471247
): void {
12481248
Log.debug(this, () => `connecting ${src} and ${dst}`);
12491249
// Register receiver for value propagation.
1250-
console.log(this._getKey(dst, undefined, true));
1250+
// console.log(this._getKey(dst, undefined, true));
12511251
const writer = dst.asWritable(this._getKey(dst, undefined, true));
12521252
// Add dependency implied by connection to local graph.
12531253
this._dependencyGraph.addEdge(src, dst);

0 commit comments

Comments
 (0)