Exemplo n.º 1
0
 public override void Compile(ByteCode bc)
 {
     using (bc.EnterSource(m_FunctionCallExpression.SourceRef))
     {
         m_FunctionCallExpression.Compile(bc);
         RemoveBreakpointStop(bc.Emit_Pop());
     }
 }
Exemplo n.º 2
0
 public override void Compile(ByteCode bc)
 {
     using (bc.EnterSource(m_FunctionCallExpression.SourceRef))
     {
         m_FunctionCallExpression.Compile(bc);
         bc.Emit_Pop();
         bc.SourceRefs[bc.SourceRefs.Count - 1] = null;                 //Remove breakpoint stop
     }
 }