Jurassic.Compiler.DynamicILGenerator.MarkSequencePoint C# (CSharp) Method

MarkSequencePoint() public method

Marks a sequence point in the Microsoft intermediate language (MSIL) stream.
public MarkSequencePoint ( System document, int startLine, int startColumn, int endLine, int endColumn ) : void
document System The document for which the sequence point is being defined.
startLine int The line where the sequence point begins.
startColumn int The column in the line where the sequence point begins.
endLine int The line where the sequence point ends.
endColumn int The column in the line where the sequence point ends.
return void
        public override void MarkSequencePoint(System.Diagnostics.SymbolStore.ISymbolDocumentWriter document, int startLine, int startColumn, int endLine, int endColumn)
        {
            // DynamicMethod does not support sequence points.
        }
DynamicILGenerator