Files
GhidRust/src/main/java/ghidrust/decompiler/parser/c/gen/ASTGhostStringToken.java
Dhruv Maroo 425c633efe Add decompilation logic for more constructs
* Function calls decompiled correctly
    * Add boolean type and boolean constants in the grammar
    * Allow angled braces in identifier names
    * Overload the `transpile` to also allow input streams
    * Update the generate script accordingly
2023-04-23 17:11:26 +05:30

34 lines
862 B
Java

package ghidrust.decompiler.parser.c.gen;
/* Generated By:JJTree: Do not edit this line. ASTGhostStringToken.java Version 7.0 */
/* JavaCCOptions:MULTI=true,NODE_USES_PARSER=false,VISITOR=true,TRACK_TOKENS=false,NODE_PREFIX=AST,NODE_EXTENDS=,NODE_FACTORY=,SUPPORT_CLASS_VISIBILITY_PUBLIC=true */
public
class ASTGhostStringToken extends SimpleNode {
String str_val;
public ASTGhostStringToken(int id) {
super(id);
}
public ASTGhostStringToken(CParser p, int id) {
super(p, id);
}
/** Accept the visitor. **/
public Object jjtAccept(CParserVisitor visitor, Object data) {
return
visitor.visit(this, data);
}
public String getValue() {
return str_val;
}
public void setValue(String value) {
this.str_val = value;
}
}
/* JavaCC - OriginalChecksum=7d91f560265b12b4f437803bcd66b7ba (do not edit this line) */