コード例 #1
0
 public string Print(Stmt stmt)
 {
     return(stmt.Accept(this));
 }
コード例 #2
0
ファイル: Interpreter.cs プロジェクト: loqix/CSharpLox
 private void Execute(Stmt stmt)
 {
     stmt.Accept(this);
 }
コード例 #3
0
 private void Resolve(Stmt stmt)
 {
     stmt.Accept(this);
 }