public void throwCompileEvent(CompileEventArgs e) { if (OnCompileHandler != null) { OnCompileHandler(this, e); } }
/// <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); }