Microsoft.JScript.Context.Context C# (CSharp) Метод

Context() приватный Метод

private Context ( DocumentContext document, String source_string ) : System
document DocumentContext
source_string String
Результат System
    internal Context(DocumentContext document, String source_string){
      this.document = document;
      this.source_string = source_string;
      this.lineNumber = 1;
      this.startLinePos = 0;
      this.startPos = 0;
      this.endLineNumber = 1;
      this.endLinePos = 0;
      this.endPos = (source_string == null) ? -1 : source_string.Length;
      this.token = JSToken.None;
      this.errorReported = 1000000;
    }
    

Same methods

Context::Context ( DocumentContext document, String source_string, int lineNumber, int startLinePos, int startPos, int endLineNumber, int endLinePos, int endPos, JSToken token ) : System