예제 #1
0
 public void PublishError(PluginLib.CompileError error)
 {
     IDEView.inst().Dispatcher.Invoke(delegate()
     {
         CompileErrors.Add(error);
     });
 }
예제 #2
0
 public void PushOutput(string text)
 {
     IDEView.inst().Dispatcher.Invoke(delegate()
     {
         CompilerOutput += text;
     });
 }
예제 #3
0
 public void PublishWarning(PluginLib.CompileError error)
 {
     IDEView.inst().Dispatcher.Invoke(delegate()
     {
         CompileErrors.Add(error);
         OnPropertyChanged("CompileErrorCt");
         OnPropertyChanged("CompileWarningCt");
     });
 }