org.antlr.v4.codegen.target.Python3Target Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of antlr4 Show documentation
Show all versions of antlr4 Show documentation
The ANTLR 4 grammar compiler.
The newest version!
/*
* Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.
* Use of this file is governed by the BSD 3-clause license that
* can be found in the LICENSE.txt file in the project root.
*/
package org.antlr.v4.codegen.target;
import org.antlr.v4.codegen.CodeGenerator;
import org.antlr.v4.codegen.Target;
import java.util.*;
public class Python3Target extends Target {
protected static final HashSet reservedWords = new HashSet<>(Arrays.asList(
"abs", "all", "and", "any", "apply", "as", "assert",
"bin", "bool", "break", "buffer", "bytearray",
"callable", "chr", "class", "classmethod", "coerce", "compile", "complex", "continue",
"def", "del", "delattr", "dict", "dir", "divmod",
"elif", "else", "enumerate", "eval", "execfile", "except",
"file", "filter", "finally", "float", "for", "format", "from", "frozenset",
"getattr", "global", "globals",
"hasattr", "hash", "help", "hex",
"id", "if", "import", "in", "input", "int", "intern", "is", "isinstance", "issubclass", "iter",
"lambda", "len", "list", "locals",
"map", "max", "min", "memoryview",
"next", "nonlocal", "not",
"object", "oct", "open", "or", "ord",
"pass", "pow", "print", "property",
"raise", "range", "raw_input", "reduce", "reload", "repr", "return", "reversed", "round",
"set", "setattr", "slice", "sorted", "staticmethod", "str", "sum", "super",
"try", "tuple", "type",
"unichr", "unicode",
"vars",
"with", "while",
"yield",
"zip",
"__import__",
"True", "False", "None",
// misc
"rule", "parserRule",
"state", "reset"
));
protected static final Map targetCharValueEscape;
static {
// https://docs.python.org/3/reference/lexical_analysis.html#string-and-bytes-literals
HashMap map = new HashMap<>();
addEscapedChar(map, '\\');
addEscapedChar(map, '\'');
addEscapedChar(map, '\"');
addEscapedChar(map, (char)0x0007, 'a');
addEscapedChar(map, (char)0x0008, 'b');
addEscapedChar(map, '\f', 'f');
addEscapedChar(map, '\n', 'n');
addEscapedChar(map, '\r', 'r');
addEscapedChar(map, '\t', 't');
addEscapedChar(map, (char)0x000B, 'v');
targetCharValueEscape = map;
}
public Python3Target(CodeGenerator gen) {
super(gen);
}
@Override
public Map getTargetCharValueEscape() {
return targetCharValueEscape;
}
@Override
protected Set getReservedWords() {
return reservedWords;
}
@Override
public boolean wantsBaseListener() {
return false;
}
@Override
public boolean wantsBaseVisitor() {
return false;
}
@Override
public boolean supportsOverloadedMethods() {
return false;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy