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:
Dhruv Maroo
2023-04-26 08:41:30 +05:30
parent f0f3d0d747
commit 2891356e1b
10 changed files with 507 additions and 494 deletions

View File

@@ -0,0 +1,9 @@
package ghidrust.decompiler.parser.c;
public class CContext {
public boolean statement_end_sc;
public CContext() {
statement_end_sc = true;
}
}