Skip to content

Commit

Permalink
Revert "Highlight super and this as keywords in JS/TS/TSX (#25135)"
Browse files Browse the repository at this point in the history
This reverts commit ebbc6a9.
  • Loading branch information
probably-neb authored Mar 9, 2025
1 parent e298301 commit 609fe86
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions crates/languages/src/javascript/highlights.scm
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@

; Literals

(this) @keyword
(super) @keyword
(this) @variable.special
(super) @variable.special

[
(null)
Expand Down
4 changes: 2 additions & 2 deletions crates/languages/src/tsx/highlights.scm
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@

; Literals

(this) @keyword
(super) @keyword
(this) @variable.special
(super) @variable.special

[
(null)
Expand Down
4 changes: 2 additions & 2 deletions crates/languages/src/typescript/highlights.scm
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@

; Literals

(this) @keyword
(super) @keyword
(this) @variable.special
(super) @variable.special

[
(null)
Expand Down

0 comments on commit 609fe86

Please sign in to comment.