public void addCommand(LocalVar theVariable)
 {
     locals.Add(theVariable);
 }
Beispiel #2
0
 /// <summary>
 /// Configures a single local variable as part of the current template
 /// </summary>
 /// <param name="theCommand">The local variable</param>
 /// <param name="index">The local variable index</param>
 public void setSingleCommand(LocalVar theCommand, int index)
 {
     setPlaceholder(theCommand.getInheritedTemplateName(), "[" + index + "] " + theCommand.getGenCode());
 }