Exemplo n.º 1
0
 public void throwCompileEvent(CompileEventArgs e)
 {
     if (OnCompileHandler != null)
     {
         OnCompileHandler(this, e);
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// compile text in console to get function of wave, or execute
 /// other commands
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void CompileEventProcessor(Object sender, CompileEventArgs myEventArgs)
 {
     compiler.compile(myEventArgs.Subject);
 }