Exemple #1
0
 private void Reset()
 {
     this.ThrowError          = true;
     this.m_Scanner           = null;
     this.m_ParseErrorMessage = null;
     this.m_ParseErrorToken   = null;
 }
Exemple #2
0
 public void SetScanner(JsonScanner scanner)
 {
     this.m_Scanner = scanner;
 }
Exemple #3
0
 public JsonParser(JsonScanner scanner)
 {
     Reset();
     this.m_Scanner = scanner;
 }