File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments