Files
GhidRust/src/main/java/ghidrust/decompiler/parser/c/CContext.java
Dhruv Maroo 2891356e1b Add CContext to store context information while parsing
* For now, it is being used to denote whether to use a semicolon or
      not
2023-04-26 08:41:30 +05:30

10 lines
166 B
Java

package ghidrust.decompiler.parser.c;
public class CContext {
public boolean statement_end_sc;
public CContext() {
statement_end_sc = true;
}
}