jdhardy / IronPython.VisualStudio
IronPython extensions for Visual Studio 2010. This project has been superseded by IronPython Tools for Visual Studio (http://bit.ly/aTrzL0).
Clone this repository (size: 98.6 KB): HTTPS / SSH
$ hg clone http://bitbucket.org/jdhardy/ironpython.visualstudio/
| commit 8: | 243db4506fb5 |
| parent 7: | 33317f097cb2 |
| branch: | default |
Suppress compiler warnings
5 months ago
Changed (Δ21 bytes):
raw changeset »
IronPython.VisualStudio/PythonClassificationDefinition.cs (2 lines added, 2 lines removed)
IronPython.VisualStudio/PythonClassifier.cs (1 lines added, 1 lines removed)
Up to file-list IronPython.VisualStudio/PythonClassificationDefinition.cs:
| … | … | @@ -23,11 +23,11 @@ namespace IronPython.VisualStudio |
23 |
23 |
[Export] |
24 |
24 |
[Name("python")] |
25 |
25 |
[BaseDefinition("code")] |
26 |
internal static ContentTypeDefinition pythonContentTypeDefinition |
|
26 |
internal static ContentTypeDefinition pythonContentTypeDefinition = null; |
|
27 |
27 |
|
28 |
28 |
[Export] |
29 |
29 |
[FileExtension(".py")] |
30 |
30 |
[ContentType("python")] |
31 |
internal static FileExtensionToContentTypeDefinition pythonFileExtensionDefinition |
|
31 |
internal static FileExtensionToContentTypeDefinition pythonFileExtensionDefinition = null; |
|
32 |
32 |
} |
33 |
33 |
} |
Up to file-list IronPython.VisualStudio/PythonClassifier.cs:
| … | … | @@ -51,7 +51,7 @@ namespace IronPython.VisualStudio |
51 |
51 |
/// Get the standard classifications for simplicity. |
52 |
52 |
/// </summary> |
53 |
53 |
[Import] |
54 |
internal IStandardClassificationService StandardClassifications |
|
54 |
internal IStandardClassificationService StandardClassifications = null; |
|
55 |
55 |
|
56 |
56 |
//returns an instance of the classifier |
57 |
57 |
public IClassifier GetClassifier(ITextBuffer buffer) |
