public static bool IsWarningPlaced(this BurstProblemSubAnalyzerStatus status)
 {
     return(status == BurstProblemSubAnalyzerStatus.WARNING_PLACED_STOP ||
            status == BurstProblemSubAnalyzerStatus.WARNING_PLACED_CONTINUE);
 }
 public static bool IsStop(this BurstProblemSubAnalyzerStatus status)
 {
     return(status == BurstProblemSubAnalyzerStatus.NO_WARNING_STOP ||
            status == BurstProblemSubAnalyzerStatus.WARNING_PLACED_STOP);
 }