JS: Update OK-style comments to $-style

This commit is contained in:
Asger F
2025-02-06 13:34:01 +01:00
parent 7e5c24a8ec
commit 9be041e27d
536 changed files with 4408 additions and 4762 deletions

View File

@@ -17,9 +17,9 @@ var accessors = {
};
var clobbering = {
x: 23, // NOT OK: clobbered by `x: 56`
y: "hello", // NOT OK: clobbered by `"y": "world"`
x: 42, // NOT OK: clobbered by `x: 56`
x: 23, // $ Alert - clobbered by `x: 56`
y: "hello", // $ Alert - clobbered by `"y": "world"`
x: 42, // $ Alert - clobbered by `x: 56`
x: 56,
"y": "world"
}