Microsoft.JScript.Context.CombineWith C# (CSharp) Method

CombineWith() private method

private CombineWith ( Context other ) : Context
other Context
return Context
    internal Context CombineWith(Context other){
      return new Context(this.document, this.source_string, this.lineNumber, this.startLinePos, this.startPos, 
                         other.endLineNumber, other.endLinePos, other.endPos, this.token);
    }