We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7848cd commit 8f51bbeCopy full SHA for 8f51bbe
utbot-framework/src/main/kotlin/org/utbot/framework/codegen/Keywords.kt
@@ -16,6 +16,15 @@ private val kotlinHardKeywords = setOf(
16
"val", "var", "when", "while"
17
)
18
19
+private val jsKeywords = setOf(
20
+ "abstract", "arguments", "await", "boolean", "break", "byte", "case", "catch", "char", "class", "const", "continue",
21
+ "debugger", "default", "delete", "do", "double", "else", "enum", "eval", "export", "extends", "false", "final",
22
+ "finally", "float", "for", "function", "goto", "if", "implements", "import", "in", "instanceof", "int", "interface",
23
+ "let", "long", "native", "new", "null", "package", "private", "protected", "public", "return", "short", "static",
24
+ "super", "switch", "synchronized", "this", "throw", "throws", "transient", "true", "try", "typeof", "var", "void",
25
+ "volatile", "while", "with", "yield"
26
+)
27
+
28
@Suppress("unused")
29
private val kotlinSoftKeywords = setOf(
30
"by", "catch", "constructor", "delegate", "dynamic", "field", "file", "finally", "get", "import", "init",
0 commit comments