File tree Expand file tree Collapse file tree
js/core/src/uri-resolution Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,7 +14,10 @@ export class JobRunner {
1414
1515 constructor (
1616 private _configBuilder : IClientConfigBuilder ,
17- private _onExecution ?: ( id : string , JobResult : JobResult ) => MaybeAsync < void >
17+ private _onExecution ?: (
18+ id : string ,
19+ JobResult : JobResult
20+ ) => MaybeAsync < void >
1821 ) {
1922 this . _jobOutput = new Map ( ) ;
2023 this . _client = new PolywrapClient ( this . _configBuilder . buildCoreConfig ( ) , {
Original file line number Diff line number Diff line change @@ -60,7 +60,10 @@ export class UriResolutionContext implements IUriResolutionContext {
6060 }
6161
6262 createSubHistoryContext ( ) : IUriResolutionContext {
63- return new UriResolutionContext ( this . _resolvingUriMap , this . _resolutionPath ) ;
63+ return new UriResolutionContext (
64+ this . _resolvingUriMap ,
65+ this . _resolutionPath
66+ ) ;
6467 }
6568
6669 createSubContext ( ) : IUriResolutionContext {
You can’t perform that action at this time.
0 commit comments