@@ -10,7 +10,14 @@ const MIN_LENGTH = 9
10
10
const START_CODES = [ 64 , 91 , 99 , 111 , 100 , 101 ]
11
11
12
12
// regexp to match the import syntax
13
- const SYNTAX_RE = / ^ @ \[ c o d e (?: { (?: ( \d + ) ? - ( \d + ) ? ) } ) ? (?: ( [ ^ \] ] + ) ) ? \] \( ( [ ^ ) ] * ) \) /
13
+ const SYNTAX_RE =
14
+ / ^ @ \[ c o d e (?: { (?: (?: (?< lineStart > \d + ) ? - (?< lineEnd > \d + ) ? ) | (?< lineSingle > \d + ) ) } ) ? (?: (?< info > [ ^ \] ] + ) ) ? \] \( (?< importPath > [ ^ ) ] * ) \) /
15
+
16
+ /**
17
+ * Utility function to parse line number from line string that matched by SYNTAX_RE
18
+ */
19
+ const parseLineNumber = ( line : string | undefined ) : number | undefined =>
20
+ line ? Number . parseInt ( line , 10 ) : undefined
14
21
15
22
export const createImportCodeBlockRule =
16
23
( { handleImportPath = ( str ) => str } : ImportCodePluginOptions ) : RuleBlock =>
@@ -36,17 +43,21 @@ export const createImportCodeBlockRule =
36
43
37
44
// check if it's matched the syntax
38
45
const match = state . src . slice ( pos , max ) . match ( SYNTAX_RE )
39
- if ( ! match ) return false
46
+ if ( ! match ?. groups ) return false
40
47
41
48
// return true as we have matched the syntax
42
49
if ( silent ) return true
43
50
44
- const [ , lineStart , lineEnd , info , importPath ] = match
51
+ const { info, importPath } = match . groups
52
+
53
+ const lineSingle = parseLineNumber ( match . groups . lineSingle )
54
+ const lineStart = lineSingle ?? parseLineNumber ( match . groups . lineStart ) ?? 0
55
+ const lineEnd = lineSingle ?? parseLineNumber ( match . groups . lineEnd )
45
56
46
57
const meta : ImportCodeTokenMeta = {
47
58
importPath : handleImportPath ( importPath ) ,
48
- lineStart : lineStart ? Number . parseInt ( lineStart , 10 ) : 0 ,
49
- lineEnd : lineEnd ? Number . parseInt ( lineEnd , 10 ) : undefined ,
59
+ lineStart,
60
+ lineEnd,
50
61
}
51
62
52
63
// create a import_code token
0 commit comments