This PR address issues in #12 and #13. making updates on analysis.pt xform.global_modreadto handle cases for GotoStmt and Char by:
Issue #12 and #13 describes how to re-create the bug.
The current results for cases GotoStmt and Char are Error: no matching case found for: GotoStmt#"error" and Error: no matching case found for: Char#":"respectively.
The expected results for GotoStmt and Char are ("","") and (NULL, c) for the issues respectively.
This PR address issues in #12 and #13. making updates on analysis.pt
xform.global_modread
to handle cases forGotoStmt
andChar
by:GotoStmt
andChar
areError: no matching case found for: GotoStmt#"error"
and Error:no matching case found for: Char#":"
respectively.GotoStmt
andChar
are ("","") and (NULL, c) for the issues respectively.