Ejemplo n.º 1
0
 public static GypDocument Load(FileInfo file)
 {
     var doc = new GypDocument();
     var parser = new GypParser(doc);
     parser.Parse(file);
     return doc;
 }
Ejemplo n.º 2
0
 public bool Go()
 {
     _wasModified = false;
     var parser = new GypParser(this);
     parser.Parse(new FileInfo(_path));
     _output.Flush();
     return _wasModified;
 }