Microsoft.JScript.FunctionObject.EmitLastLineInfo C# (CSharp) Method

EmitLastLineInfo() private method

private EmitLastLineInfo ( ILGenerator il ) : void
il ILGenerator
return void
      internal void EmitLastLineInfo(ILGenerator il){
        if (!this.isImplicitCtor){
          // this is the only case so far where debug info does not go through Context and it's explicitely called here using DocumentContext
          int endLine = this.body.context.EndLine;
          int endColumn = this.body.context.EndColumn;
          this.body.context.document.EmitLineInfo(il, endLine, endColumn, endLine, endColumn + 1);
        }
      }