File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -359,11 +359,11 @@ const importProcessors = {
359
359
}
360
360
361
361
const createComponentLetBlockExpr = ( comp : [ key : string , info : { path : string } ] ) => {
362
- const path = '__hbs__import_: ' + comp [ 1 ] . path . replace ( / \\ / g, '/' ) ;
362
+ const path = '__hbs__import_' + comp [ 1 ] . path . replace ( / \\ / g, '/' ) ;
363
363
return importProcessors . glimmer . preprocess ( `{{#let (component "${ path } ") as |${ comp [ 0 ] } |}}{{/let}}` ) . body [ 0 ] as glimmer . AST . BlockStatement ;
364
364
} ;
365
365
const handleHelper = ( helper : { nodes : PathExpression [ ] , resolvedPath : string } ) => {
366
- const path = '__hbs__import_: ' + helper . resolvedPath . replace ( / \\ / g, '/' ) ;
366
+ const path = '__hbs__import_' + helper . resolvedPath . replace ( / \\ / g, '/' ) ;
367
367
if ( this . options . useModifierHelperHelpers ) {
368
368
let lookup = `"${ path } "` ;
369
369
if ( this . options . useHelperWrapper ) {
@@ -377,7 +377,7 @@ const importProcessors = {
377
377
}
378
378
} ;
379
379
const handleModifier = ( modifier : { nodes : PathExpression [ ] , resolvedPath : string } ) => {
380
- const path = '__hbs__import_: ' + modifier . resolvedPath . replace ( / \\ / g, '/' ) ;
380
+ const path = '__hbs__import_' + modifier . resolvedPath . replace ( / \\ / g, '/' ) ;
381
381
if ( this . options . useModifierHelperHelpers ) {
382
382
let lookup = `"${ path } "` ;
383
383
if ( this . options . useHelperWrapper ) {
You can’t perform that action at this time.
0 commit comments