Browse Source

Fixed NullReferenceException in ControlFlow.NodeCreationVisitor.VisitSwitchStatement.

newNRvisualizers
Daniel Grunwald 14 years ago
parent
commit
858d4cc673
  1. 2
      ICSharpCode.NRefactory.CSharp/Analysis/ControlFlow.cs

2
ICSharpCode.NRefactory.CSharp/Analysis/ControlFlow.cs

@ -436,7 +436,7 @@ namespace ICSharpCode.NRefactory.CSharp.Analysis @@ -436,7 +436,7 @@ namespace ICSharpCode.NRefactory.CSharp.Analysis
}
}
}
if (constant.IsCompileTimeConstant && sectionMatchedByConstant == null)
if (constant != null && constant.IsCompileTimeConstant && sectionMatchedByConstant == null)
sectionMatchedByConstant = defaultSection;
int gotoCaseOrDefaultInOuterScope = gotoCaseOrDefault.Count;

Loading…
Cancel
Save