Exemplo n.º 1
0
Arquivo: If.cs Projeto: halak/bibim
 protected override void GenerateBlockBegin(ScriptCompiler.Context context)
 {
     if (Else != null)
     {
         context.IfFalseThenJump(Condition, ElseLabel);
     }
     else
     {
         context.IfFalseThenJump(Condition, EndLabel);
     }
 }
Exemplo n.º 2
0
 protected override void GenerateBlockBegin(ScriptCompiler.Context context)
 {
     context.InidicateLabel(LoopLabel);
     context.IfFalseThenJump(Condition, EndLabel);
 }