Merge pull request #743 from hvitved/csharp/dataflow-splitting

C#: Teach data flow library about CFG splitting
This commit is contained in:
Calum Grant
2019-01-28 16:31:24 +00:00
committed by GitHub
47 changed files with 1977 additions and 540 deletions

View File

@@ -5,7 +5,7 @@ using System.Web;
public class StackTraceHandler : IHttpHandler
{
bool b;
public void ProcessRequest(HttpContext ctx)
{
try
@@ -54,7 +54,8 @@ public class StackTraceHandler : IHttpHandler
// Method that may throw an exception
public void doSomeWork()
{
throw new Exception();
if (b)
throw new Exception();
}
public void log(string s, Exception e)