Inheritance: Tools.SYMBOL
 /// <summary>
 ///     Generates the code for a JumpLabel node.
 /// </summary>
 /// <param name="jl">The JumpLabel node.</param>
 /// <returns>String containing C# code for JumpLabel jl.</returns>
 private string GenerateJumpLabel(JumpLabel jl)
 {
     return GenerateLine(Generate(String.Format("{0}:", CheckName(jl.LabelName)), jl) + " NoOp();");
 }
Beispiel #2
0
 public Statement(Parser yyp, JumpLabel jl) : base((yyp))
 {
     kids.Add(jl);
 }