Skip to content

Commit

Permalink
Fixing issues before release 0.8.11
Browse files Browse the repository at this point in the history
  • Loading branch information
TwitchBronBron committed Oct 8, 2023
1 parent a626cd9 commit 051fd4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/codeStyle/index.spec.ts
Expand Up @@ -642,7 +642,7 @@ describe('codeStyle', () => {
doTest('print `${"0xffffff"}`', [9, 19]); // expression with a string in it
doTest('print `0xffffff${"0xffffff"}`', [17, 27]); // color then expression
doTest('print `${"0xffffff"}0xffffff`', [9, 19]); // expression then color
doTest('print `${"0xffffff"}0xffffff${"0xffffff"}`', [9, 19], [29, 39]); // expression then color then expression
doTest('print `${"0xffffff"}0xffffff${"0xffffff"}`', [9, 19], [30, 40]); // expression then color then expression
doTest('print `0xffffff${"0xffffff"}0xffffff`', [17, 27]); // color then expression then color

function doTest(code: string, ...diagnosticCharLocations: Array<[startChar: number, endChar: number]>) {
Expand Down

0 comments on commit 051fd4c

Please sign in to comment.