File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 11/** @module transition */ /** for typedoc */
2+ import { stringify } from "../common/strings" ;
23import { trace } from "../common/trace" ;
34import { services } from "../common/coreservices" ;
45import {
@@ -257,7 +258,7 @@ export class Transition implements IHookRegistry {
257258 const getData = ( token : any ) => {
258259 var resolvable = resolveContext . getResolvable ( token ) ;
259260 if ( resolvable === undefined ) {
260- throw new Error ( " Dependency Injection token not found: ${stringify(token)}" ) ;
261+ throw new Error ( ` Dependency Injection token not found: ${ stringify ( token ) } ` ) ;
261262 }
262263 return resolvable . data ;
263264 } ;
@@ -580,4 +581,4 @@ export class Transition implements IHookRegistry {
580581
581582 return `Transition#${ id } ( '${ from } '${ fromParams } -> ${ toValid } '${ to } '${ toParams } )` ;
582583 }
583- }
584+ }
You can’t perform that action at this time.
0 commit comments