Esempio n. 1
0
 public RequestRunner(string keyPath)
 {
     _keyPath       = keyPath;
     _editorFactory = () => {
         var locator = new OpenIDE.Core.EditorEngineIntegration.EngineLocator(new OpenIDE.Core.FileSystem.FS());
         return(locator.GetInstance(_keyPath));
     };
     _codemodelFactory = () => {
         var locator = new OpenIDE.Core.CodeEngineIntegration.CodeEngineDispatcher(new OpenIDE.Core.FileSystem.FS());
         return(locator.GetInstance(_keyPath));
     };
 }
Esempio n. 2
0
 public RequestRunner(string keyPath)
 {
     _keyPath = keyPath;
     _editorFactory = () => {
         var locator = new OpenIDE.Core.EditorEngineIntegration.EngineLocator(new OpenIDE.Core.FileSystem.FS());
         return locator.GetInstance(_keyPath);
     };
     _codemodelFactory = () => {
         var locator = new OpenIDE.Core.CodeEngineIntegration.CodeEngineDispatcher(new OpenIDE.Core.FileSystem.FS());
         return locator.GetInstance(_keyPath);
     };
 }