-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: add quotes to identifier with special character
Signed-off-by: jakezhu9 <[email protected]>
- Loading branch information
Showing
3 changed files
with
78 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
""" | ||
This file was generated by the KCL auto-gen tool. DO NOT EDIT. | ||
Editing this file might prove futile when you re-run the KCL auto-gen generate command. | ||
""" | ||
|
||
identifier = { | ||
"a-b" = "identifier with hyphen" | ||
a_b = "identifier with underscore" | ||
$if = "identifier with keyword" | ||
"a/b" = "identifier with slash" | ||
"a.b" = "identifier with dot" | ||
"a#b" = "identifier with hash" | ||
"a$b" = "identifier with dollar" | ||
"a@b" = "identifier with at" | ||
"a%b" = "identifier with percent" | ||
"a*b" = "identifier with asterisk" | ||
"a&b" = "identifier with ampersand" | ||
"a(b" = "identifier with left parenthesis" | ||
"a)b" = "identifier with right parenthesis" | ||
"a,b" = "identifier with comma" | ||
"a:b" = "identifier with colon" | ||
"a;b" = "identifier with semicolon" | ||
"a<b" = "identifier with less than" | ||
"a>b" = "identifier with greater than" | ||
"a=b" = "identifier with equal" | ||
"a+b" = "identifier with plus" | ||
"a\\b" = "identifier with backslash" | ||
"a[b" = "identifier with left bracket" | ||
"a]b" = "identifier with right bracket" | ||
"a{b" = "identifier with left brace" | ||
"a}b" = "identifier with right brace" | ||
"a'b" = "identifier with single quote" | ||
"a`b" = "identifier with back quote" | ||
"a~b" = "identifier with tilde" | ||
"a!b" = "identifier with exclamation" | ||
"a?b" = "identifier with question" | ||
"a|b" = "identifier with vertical bar" | ||
"a^b" = "identifier with caret" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
identifier: | ||
a-b: "identifier with hyphen" | ||
a_b: "identifier with underscore" | ||
if: "identifier with keyword" | ||
a/b: "identifier with slash" | ||
a.b: "identifier with dot" | ||
a#b: "identifier with hash" | ||
a$b: "identifier with dollar" | ||
a@b: "identifier with at" | ||
a%b: "identifier with percent" | ||
a*b: "identifier with asterisk" | ||
a&b: "identifier with ampersand" | ||
a(b: "identifier with left parenthesis" | ||
a)b: "identifier with right parenthesis" | ||
a,b: "identifier with comma" | ||
a:b: "identifier with colon" | ||
a;b: "identifier with semicolon" | ||
a<b: "identifier with less than" | ||
a>b: "identifier with greater than" | ||
a=b: "identifier with equal" | ||
a+b: "identifier with plus" | ||
a\\b: "identifier with backslash" | ||
a[b: "identifier with left bracket" | ||
a]b: "identifier with right bracket" | ||
a{b: "identifier with left brace" | ||
a}b: "identifier with right brace" | ||
a'b: "identifier with single quote" | ||
a`b: "identifier with back quote" | ||
a~b: "identifier with tilde" | ||
a!b: "identifier with exclamation" | ||
a?b: "identifier with question" | ||
a|b: "identifier with vertical bar" | ||
a^b: "identifier with caret" |