コード例 #1
0
ファイル: CodeGen.cs プロジェクト: bencz/Beryl
 public void visit(StringExpression that)
 {
     Console.Write("{0}", that.Value);
 }
コード例 #2
0
ファイル: Checker.cs プロジェクト: bencz/Beryl
 public void visit(StringExpression that)
 {
     that.Type = new StringType(that.Position);
 }