/// <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> string GenerateJumpLabel(JumpLabel jl) { return GenerateLine(Generate(string.Format("{0}:", CheckName(jl.LabelName)), jl) + " NoOp();"); }
public Statement(Parser yyp, JumpLabel jl) : base((yyp)) { kids.Add(jl); }