Skip to content

Commit 39abc0d

Browse files
committed
Remove few tslint disable comments
1 parent ac9e1ee commit 39abc0d

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

src/lualib/NumberToString.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// tslint:disable-next-line: variable-name
21
const ____radixChars = "0123456789abcdefghijklmnopqrstuvwxyz";
32

43
// https://www.ecma-international.org/ecma-262/10.0/index.html#sec-number.prototype.tostring

src/lualib/Symbol.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// tslint:disable-next-line: variable-name
21
const ____symbolMetatable = {
32
__tostring(this: symbol): string {
43
return `Symbol(${this.description || ""})`;

src/lualib/SymbolRegistry.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// tslint:disable-next-line: variable-name
21
const ____symbolRegistry: Record<string, symbol> = {};
32

43
function __TS__SymbolRegistryFor(this: void, key: string): symbol {

0 commit comments

Comments
 (0)