mirror of
https://github.com/DMaroo/GhidRust.git
synced 2025-12-24 19:20:22 +01:00
Add CContext to store context information while parsing
* For now, it is being used to denote whether to use a semicolon or
not
This commit is contained in:
9
src/main/java/ghidrust/decompiler/parser/c/CContext.java
Normal file
9
src/main/java/ghidrust/decompiler/parser/c/CContext.java
Normal file
@@ -0,0 +1,9 @@
|
||||
package ghidrust.decompiler.parser.c;
|
||||
|
||||
public class CContext {
|
||||
public boolean statement_end_sc;
|
||||
|
||||
public CContext() {
|
||||
statement_end_sc = true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user