github.com/AlpineAIO/wails/v2@v2.0.0-beta.32.0.20240505041856-1047a8fa5fef/internal/typescriptify/js-reserved-keywords.go (about)

     1  package typescriptify
     2  
     3  var jsReservedKeywords []string = []string{
     4  	"abstract",
     5  	"arguments",
     6  	"await",
     7  	"boolean",
     8  	"break",
     9  	"byte",
    10  	"case",
    11  	"catch",
    12  	"char",
    13  	"class",
    14  	"const",
    15  	"continue",
    16  	"debugger",
    17  	"default",
    18  	"delete",
    19  	"do",
    20  	"double",
    21  	"else",
    22  	"enum",
    23  	"eval",
    24  	"export",
    25  	"extends",
    26  	"false",
    27  	"final",
    28  	"finally",
    29  	"float",
    30  	"for",
    31  	"function",
    32  	"goto",
    33  	"if",
    34  	"implements",
    35  	"import",
    36  	"in",
    37  	"instanceof",
    38  	"int",
    39  	"interface",
    40  	"let",
    41  	"long",
    42  	"native",
    43  	"new",
    44  	"null",
    45  	"package",
    46  	"private",
    47  	"protected",
    48  	"public",
    49  	"return",
    50  	"short",
    51  	"static",
    52  	"super",
    53  	"switch",
    54  	"synchronized",
    55  	"this",
    56  	"throw",
    57  	"throws",
    58  	"transient",
    59  	"true",
    60  	"try",
    61  	"typeof",
    62  	"var",
    63  	"void",
    64  	"volatile",
    65  	"while",
    66  	"with",
    67  	"yield",
    68  	"object",
    69  }