示例#1
0
 public TreeSemanticAnalizer(ICompilationChain next) : base(next)
 {
 }
示例#2
0
 public SourceParsing(ICompilationChain next) : base(next)
 {
 }
 public DefaultCompilationChain() : base(null)
 {
     _firstStep = new SourceParsing(new TreeSemanticAnalizer(null));
 }
 public AbstractCompilationChain(ICompilationChain next)
 {
     this.next = next;
 }