You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I assume this is a codemirror upstream issue, but I'm still posting this here in case there are more than just me noticing such an issue. The problem is, after a certain point in the .ts file -- I always saw this in conjunction with string interpolation backticks (!) -- all highlighting is gone. Editing plain orange code text is only half the fun 🙈 I'm also wondering if this affects other types of files …
The text was updated successfully, but these errors were encountered:
Here is a minimal .ts example to reproduce the problem:
class Foo {
f(obj) {
for (let key in obj) {
}
}
g(a: string): void {
if (!this.h(a)) {
throw Error(`${a}`);
}
}
// This should not be red!
h(a: string): boolean {
//...
}
}
I assume this is a codemirror upstream issue, but I'm still posting this here in case there are more than just me noticing such an issue. The problem is, after a certain point in the .ts file -- I always saw this in conjunction with string interpolation backticks (!) -- all highlighting is gone. Editing plain orange code text is only half the fun 🙈 I'm also wondering if this affects other types of files …
The text was updated successfully, but these errors were encountered: