Skip to content

Commit 19297c9

Browse files
committed
Don’t break columns on INVISIBLE SEPERATOR
1 parent 9a7b7e6 commit 19297c9

1 file changed

Lines changed: 0 additions & 9 deletions

File tree

src/compiler/tokenizer/scanners/group-sep.mjs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,6 @@ export default function groupSep(
88
return null;
99
}
1010

11-
if (char.codePointAt(0) === 0x2063) {
12-
// INVISIBLE SEPERATOR
13-
return {
14-
type: "sep.col",
15-
value: char,
16-
end: start + char.length,
17-
};
18-
}
19-
2011
const colSepEnd = start + colSep.length;
2112
const rowSepEnd = start + rowSep.length;
2213

0 commit comments

Comments
 (0)