ClearDebugInfo() public static method

Creates a DebugInfoExpression for clearing a sequence point.
public static ClearDebugInfo ( SymbolDocumentInfo document ) : DebugInfoExpression
document SymbolDocumentInfo The that represents the source file.
return DebugInfoExpression
        public void DebugInfo_clear()
        {
            var expression =
                LinqExpression.ClearDebugInfo(
                    LinqExpression.SymbolDocument(
                        string.Empty));

            ShouldRoundrip(expression);
        }