2007-06-06から1日間の記事一覧

抽象構文木ジェネレータ

こんな感じ Expr: PlusExpr: rhs: Expr lhs: Expr MulExpr: rhs: Expr lhs: Expr MinusExpr: rhs: Expr lhs: Expr DivExpr: rhs: Expr lhs: Expr IntExpr: value: int で、抽象構文木にしたいのを書いて、 $ ruby astgen.rb hoge.huga input.yamlとかやると…