Beispiel #1
0
 public string Evaluate(AstNode ast)
 {
     return this.Visit<string>(ast);
 }
Beispiel #2
0
 protected override object Default(AstNode node)
 {
     return null;
 }
Beispiel #3
0
 private Format(AstNode ast)
 {
     this.ast = ast;
 }