Help
Help
# List of keywords
reserve_words = ["pragma", "library", "contract", "is", "function",
"event", "emit", "modifier", "return", "public",
"private", "const", "external", "internal",
"payable", "assert",
"require", "throw", "import", "as", "indexed",
"pure", "view", "memory", "storage", "calldata",
"abstract", "after", "alias", "apply",
"auto", "case", "catch", "copyof", "default",
"define", "final", "immutable", "implements", "in",
"inline", "let", "macro", "match",
"mutable", "null", "of", "override", "partial",
"promise", "reference", "relocatable", "sealed",
"sizeof", "static", "supports", "switch", "try",
"typedef", "typeof", "unchecked"]
# List of operators that is not in assignment and comparison operators
operators_list = ["+", "-", "*", "/", "%", "++", "--", "&&", "||", "!",
"&", "|", "^", "~", "<<", ">>"]