Inheritance: OutputFile
Exemplo n.º 1
0
 public virtual Parser Parser(ParserFile file)
 {
     return null;
 }
Exemplo n.º 2
0
 public Parser(OutputModelFactory factory, ParserFile file)
     : base(factory)
 {
     this.file = file; // who contains us?
 }
Exemplo n.º 3
0
 public virtual ParserFile ParserFile(ParserFile f)
 {
     return f;
 }
Exemplo n.º 4
0
 public Parser(OutputModelFactory factory, ParserFile file)
     : base(factory)
 {
     this.file = file; // who contains us?
 }
Exemplo n.º 5
0
 public virtual Parser Parser(ParserFile file)
 {
     Parser p = @delegate.Parser(file);
     foreach (CodeGeneratorExtension ext in extensions)
         p = ext.Parser(p);
     return p;
 }
Exemplo n.º 6
0
 public override Parser Parser(ParserFile file)
 {
     return new Parser(this, file);
 }