コード例 #1
0
ファイル: Ast.cs プロジェクト: bigyihsuan/EsotericReaction
 public Molecule(Element left, Molecule right)
 {
     this.left  = left;
     this.right = right;
 }
コード例 #2
0
ファイル: Ast.cs プロジェクト: bigyihsuan/EsotericReaction
 public string VisitMolecule(Molecule expr)
 {
     return(Parenthesize("", expr.left, expr.right));
 }
コード例 #3
0
ファイル: Ast.cs プロジェクト: bigyihsuan/EsotericReaction
 public Term(Token coefficient, Molecule molecule)
 {
     this.coefficient = coefficient;
     this.molecule    = molecule;
 }