コード例 #1
0
ファイル: Command.cs プロジェクト: paulochang/DecafIde
 /// <summary>
 /// Configures a single expression as part of the current template
 /// </summary>
 /// <param name="fieldName">The current expression's fieldName</param>
 /// <param name="theCommand">The current expression</param>
 public void setSingleCommand(string fieldName, ExpressionBaseClass theCommand)
 {
     setPlaceholder(fieldName, theCommand.PushCode);
 }
コード例 #2
0
 public void addExpression(ExpressionBaseClass theVariable)
 {
     parameterList.Add(theVariable);
 }