@@ -204,7 +204,7 @@ function factoryFromRecipe<T, R>(
204204 paths . set ( inputs , [ "argument" ] ) ;
205205
206206 // Add paths for all the internal cells
207- // TODO: Infer more stable identifiers
207+ // TODO(seefeld) : Infer more stable identifiers
208208 let count = 0 ;
209209 cells . forEach ( ( cell : OpaqueRef < any > ) => {
210210 if ( paths . has ( cell ) ) return ;
@@ -249,12 +249,12 @@ function factoryFromRecipe<T, R>(
249249 let argumentSchema : JSONSchema ;
250250
251251 if ( typeof argumentSchemaArg === "string" ) {
252- // TODO: initial is likely not needed anymore
253- // TODO: But we need a new one for the result
252+ // TODO(seefeld) : initial is likely not needed anymore
253+ // TODO(seefeld) : But we need a new one for the result
254254 argumentSchema = createJsonSchema ( defaults , { } ) ;
255255 argumentSchema . description = argumentSchemaArg ;
256256
257- delete argumentSchema . properties ?. [ UI ] ; // TODO: This should be a schema for views
257+ delete argumentSchema . properties ?. [ UI ] ; // TODO(seefeld) : This should be a schema for views
258258 if ( argumentSchema . properties ?. internal ?. properties ) {
259259 for (
260260 const key of Object . keys (
@@ -314,7 +314,7 @@ function factoryFromRecipe<T, R>(
314314 } , recipe ) satisfies RecipeFactory < T , R > ;
315315
316316 // Bind all cells to the recipe
317- // TODO: Does OpaqueRef cause issues here?
317+ // TODO(seefeld) : Does OpaqueRef cause issues here?
318318 [ ...cells ]
319319 . filter ( ( cell ) => ! cell . export ( ) . path . length ) // Only bind root cells
320320 . forEach ( ( cell ) =>
0 commit comments