Example #1
0
 /// <summary>
 /// Generates code for a call command node
 /// </summary>
 /// <param name="callCommand">The node to generate code for</param>
 private void GenerateCodeForCallCommand(CallCommandNode callCommand)
 {
     Debugger.Write("Generating code for Call Command");
     GenerateCodeFor(callCommand.Parameter);
     GenerateCodeFor(callCommand.Identifier);
 }
Example #2
0
 /// <summary>
 /// Carries out identification on a call command node
 /// </summary>
 /// <param name="callCommand">The node to perform identification on</param>
 private void PerformIdentificationOnCallCommand(CallCommandNode callCommand)
 {
     PerformIdentification(callCommand.Identifier);
     PerformIdentification(callCommand.Parameter);
 }