Thanks to visit codestin.com Credit goes to github.com
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 fde5f18 commit f4b5df7Copy full SHA for f4b5df7
Tools/cases_generator/lexer.py
@@ -206,13 +206,13 @@ def choice(*opts: str) -> str:
206
kwds.append(VOLATILE)
207
WHILE = "WHILE"
208
kwds.append(WHILE)
209
-#An instruction in the DSL
+# An instruction in the DSL
210
INST = "INST"
211
kwds.append(INST)
212
-#A micro-op in the DSL
+# A micro-op in the DSL
213
OP = "OP"
214
kwds.append(OP)
215
-#A macro in the DSL
+# A macro in the DSL
216
MACRO = "MACRO"
217
kwds.append(MACRO)
218
keywords = {name.lower(): name for name in kwds}
0 commit comments