예제 #1
0
파일: Parser.cs 프로젝트: bartwe/plukc
 public Parser(string sourceName, TextReader source, Set <string> keywords, Set <string> multiPartNonIdentifiers)
 {
     this.sourceName = sourceName;
     this.source     = new ExtendedTextReader(source);
     this.keywords   = keywords;
     this.multiPartNonIdentifiers = multiPartNonIdentifiers;
 }
예제 #2
0
파일: Parser.cs 프로젝트: bartwe/plukc
 protected virtual void Dispose(bool disposing)
 {
     if (disposing)
     {
         if (source != null)
         {
             source.Dispose();
             source = null;
         }
     }
 }