Microsoft.JScript.FunctionObject.EmitLastLineInfo C# (CSharp) 메소드

EmitLastLineInfo() 개인적인 메소드

private EmitLastLineInfo ( ILGenerator il ) : void
il ILGenerator
리턴 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);
        }
      }