public DaxFormatter(Babel.Source source, EditArray mgr, TextSpan formattingSpan, string eolText, LanguagePreferences languagePreferences, int indentDepth, string formatterType)
 {
     _source              = source;
     _editManager         = mgr;
     _formattingSpan      = formattingSpan;
     _eolText             = eolText;
     _languagePreferences = languagePreferences;
     _indentDepth         = indentDepth;
     _formatterType       = formatterType;
 }
 private BismInfoProvider GetBismInfoProvider()
 {
     Babel.Source babelSource = GetSource() as Babel.Source;
     return(babelSource.BismInfoProvider);
 }