@@ -10,27 +10,38 @@ export default function matchStringLiteral(
10
10
compileOptions : CompileOptions
11
11
) : CompiledMatcher {
12
12
const pattern : StringLiteral = path . value
13
- const n = compileOptions . backend . t . namedTypes
14
13
const placeholderMatcher = compileStringPlaceholderMatcher (
15
14
path ,
16
- ( pattern ) => pattern . value ,
17
- compileOptions ,
18
- { nodeType : 'StringLiteral' }
15
+ compileOptions
19
16
)
20
17
21
18
if ( placeholderMatcher ) return placeholderMatcher
22
19
23
20
pattern . value = unescapeIdentifier ( pattern . value )
24
21
22
+ return createStringLiteralMatcher ( path , pattern . value , compileOptions )
23
+ }
24
+
25
+ export function createStringLiteralMatcher (
26
+ path : NodePath ,
27
+ value : string ,
28
+ compileOptions : CompileOptions
29
+ ) : CompiledMatcher {
30
+ const n = compileOptions . backend . t . namedTypes
25
31
return convertPredicateMatcher (
26
32
path ,
27
33
{
28
34
match : ( path : NodePath ) : boolean => {
29
35
const { value : node } = path
30
36
31
- return n . StringLiteral . check ( node ) && pattern . value === node . value
37
+ return (
38
+ ( n . StringLiteral . check ( node ) && value === node . value ) ||
39
+ ( n . TemplateLiteral . check ( node ) &&
40
+ node . quasis . length === 1 &&
41
+ value === ( node . quasis [ 0 ] . value . cooked ?? node . quasis [ 0 ] . value . raw ) )
42
+ )
32
43
} ,
33
- nodeType : 'StringLiteral' ,
44
+ nodeType : [ 'StringLiteral' , 'TemplateLiteral' ] ,
34
45
} ,
35
46
compileOptions
36
47
)
0 commit comments