This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static class PredefinedOutputWindowPanes | |
| { | |
| public static readonly string General; | |
| public static readonly string Debug; | |
| public static readonly string Build; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var outputWindow = OutputWindowService.TryGetPane("ANTLR IntelliSense Engine"); | |
| if (outputWindow != null) | |
| outputWindow.WriteLine(message); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Import] | |
| internal IOutputWindowService OutputWindowService; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace JavaLanguageService | |
| { | |
| using System.ComponentModel.Composition; | |
| using Microsoft.VisualStudio.Utilities; | |
| using JavaLanguageService.Panes; | |
| public static class Services | |
| { | |
| [Export] | |
| [Name("ANTLR IntelliSense Engine")] |
NewerOlder