private ISet <ArrayAccess> _CollectAccesses(string body) { var code = TestCodeFactory.CreateCode(body); var cfg = ControlFlowGraphFactory.Create(code); return(ArrayAccessCollector.Collect(cfg)); }
public ControlFlowGraph CreateControlFlowGraph(string body) { return(ControlFlowGraphFactory.Create(TestCodeFactory.CreateCode(body))); }
public ControlFlowGraph CreateControlFlowGraph(string body, bool interprocedural) { return(ControlFlowGraphFactory.Create(TestCodeFactory.CreateCode(body), interprocedural)); }
public override ControlFlowGraph CreateControlFlowGraph(string body) { return(ControlFlowGraphFactory.Create(TestCodeFactory.CreateCode(body), true)); }
private VariableAccesses _CollectAccesses(string body) { return(VariableAccesses.Collect(TestCodeFactory.CreateCode(body))); }
public Code CreateCode(string body) { return(TestCodeFactory.CreateCode(body)); }