EBNFをC# コードに変換する方法を学ぼうとしています。
サンプル:int <ident> = <expr>
「このデータ型(int)の変数(ident)は(=)整数(expr)を受け取りますが、それを次のように変換する方法がわかりません。
アストクラスから
public class Int : Stmt
{
public string Ident;
public Expr Expr;
}
パーサークラスから
#region INTEGER VARIABLE
else if (this.tokens[this.index].Equals("int"))
{
this.index++;
Int Integer = new Int();
if (this.index < this.tokens.Count &&
this.tokens[this.index] is string)
{
Integer.Ident = (string)this.tokens[this.index];
}
else
{
throw new System.Exception("expected variable name after 'int'");
}
this.index++;
if (this.index == this.tokens.Count ||
this.tokens[this.index] != Scanner.EqualSign)
{
throw new System.Exception("expected = after 'int ident'");
}
this.index++;
Integer.Expr = this.ParseExpr();
result = Integer;
}
#endregion
CodeGen クラスから
#region INTEGER
else if (stmt is Int)
{
// declare a local
Int integer = (Int)stmt;
this.symbolTable[integer.Ident] = this.il.DeclareLocal(this.TypeOfExpr(integer.Expr));
// set the initial value
Assign assign = new Assign();
assign.Ident = integer.Ident;
assign.Expr = integer.Expr;
this.GenStmt(assign);
}
#endregion
これを変換する方法を正しく理解する方法について、誰かが私を正しい方向に向けることができますか?