-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix use declarations for ts and classes, use #static instead of var()
- Loading branch information
Benedikt Strehle
committed
Oct 12, 2024
1 parent
1ec48b9
commit 88dab3c
Showing
6 changed files
with
307 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
renderFrontend(()=>{ | ||
use("silent-errors", console); | ||
console.log(null, undefined, globalThis, window, true, false, NaN, Infinity, -Infinity); | ||
use("silent-errors", console, this); | ||
console.log(null, undefined, this, globalThis, window, true, false, NaN, Infinity, -Infinity); | ||
}); |
Oops, something went wrong.