We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f775ee5 commit b814758Copy full SHA for b814758
packages/shader-lab/src/common/BaseScanner.ts
@@ -108,11 +108,6 @@ export default class BaseScanner {
108
while (BaseScanner._checkIsIn(curChar, spaceChars)) {
109
this._advance();
110
curChar = this.getCurChar();
111
- // Compatible with windows line break CRLF.
112
- if (includeLineBreak && curChar === "\n") {
113
- this._advance();
114
- curChar = this.getCurChar();
115
- }
116
}
117
118
0 commit comments