File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -342,7 +342,7 @@ export class Manifest {
342
342
findRecipesByVerb ( verb : string ) {
343
343
return [ ...this . _findAll ( manifest => manifest . _recipes . filter ( recipe => recipe . verbs . includes ( verb ) ) ) ] ;
344
344
}
345
- _typePredicate < HasTypeProperty extends { type : Type } > ( candidate : HasTypeProperty , type : Type , checkSubtype : boolean ) {
345
+ _typePredicate < HasTypeProperty extends { type : Type } > ( candidate : HasTypeProperty , type : Type , checkSubtype : boolean ) {
346
346
const resolvedType = type . resolvedType ( ) ;
347
347
if ( ! resolvedType . isResolved ( ) ) {
348
348
return ( type instanceof CollectionType ) === ( candidate . type instanceof CollectionType ) &&
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ export class StorageKeyRecipeResolver {
120
120
* @param recipe should be long running.
121
121
* @param arc Arc is associated with current recipe.
122
122
*/
123
- async createStoresForCreateHandles ( recipe : Recipe , arc : Arc ) {
123
+ createStoresForCreateHandles ( recipe : Recipe , arc : Arc ) {
124
124
const resolver = new CapabilitiesResolver ( { arcId : arc . id } ) ;
125
125
for ( const ch of recipe . handles . filter ( h => h . fate === 'create' ) ) {
126
126
const storageKey = ramDiskStorageKeyPrefixForTest ( ) ( arc . id ) ; // TODO: actually create the storage keys.
@@ -160,4 +160,3 @@ export class StorageKeyRecipeResolver {
160
160
}
161
161
162
162
163
-
You can’t perform that action at this time.
0 commit comments