private TextEditorCore(ExecutionStateChangedHandler executionStateHandler)
 {
     this.ReadOnlyState = false;
     this.UiExecutionStateChangeHandler = executionStateHandler;
     this.overrideModifier = TextEditorCommand.Modifier.None;
     Solution.ScriptCountChanged += new ScriptCountChangedHandler(OnScriptCountChanged);
 }
 public static ITextEditorCore CreateTextEditorCore(ExecutionStateChangedHandler handler)
 {
     return(TextEditorCore.CreateSingleton(handler));
 }
 public static ITextEditorCore CreateTextEditorCore(ExecutionStateChangedHandler handler)
 {
     return TextEditorCore.CreateSingleton(handler);
 }