dev/lib/syntax.js
changed.
Showing 1 of 1 files from the diff.
@@ -25,14 +25,10 @@
Loading
25 | 25 | /** @type {ConstructRecord} */ |
|
26 | 26 | const flow = {} |
|
27 | 27 | let index = -1 |
|
28 | - | /** @type {Matter} */ |
|
29 | - | let matter |
|
30 | - | /** @type {number} */ |
|
31 | - | let code |
|
32 | 28 | ||
33 | 29 | while (++index < settings.length) { |
|
34 | - | matter = settings[index] |
|
35 | - | code = fence(matter, 'open').charCodeAt(0) |
|
30 | + | const matter = settings[index] |
|
31 | + | const code = fence(matter, 'open').charCodeAt(0) |
|
36 | 32 | if (code in flow) { |
|
37 | 33 | // @ts-expect-error it clearly does exist. |
|
38 | 34 | flow[code].push(parse(matter)) |
Files | Coverage |
---|---|
dev | 100.00% |
Project Totals (4 files) | 100.00% |
1298000916
1298000916
Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file.
The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files.
The size and color of each slice is representing the number of statements and the coverage, respectively.