[svn] r6942: vs-plugin/trunk:
Nemerle.Compiler.Utils/Nemerle.Completion2/CodeModel/ScanLexer.n
Nemerle.VsI...
IT
svnadmin at nemerle.org
Sat Nov 18 21:21:25 CET 2006
Log:
Fix for string formatting.
Author: IT
Date: Sat Nov 18 21:21:22 2006
New Revision: 6942
Modified:
vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/CodeModel/ScanLexer.n
vs-plugin/trunk/Nemerle.VsIntegration/NemerlePackage.cs
vs-plugin/trunk/Nemerle.VsIntegration/Project/NemerleProjectNode.cs
Modified: vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/CodeModel/ScanLexer.n
==============================================================================
--- vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/CodeModel/ScanLexer.n (original)
+++ vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/CodeModel/ScanLexer.n Sat Nov 18 21:21:22 2006
@@ -268,7 +268,7 @@
repeat (2) skip();
(Token.StringLiteral(CurrentValue), TP.String, SColor(false), TR.None)
- | '{' =>
+ | '{' when char.IsDigit(peek_next()) =>
def loop()
{
Modified: vs-plugin/trunk/Nemerle.VsIntegration/NemerlePackage.cs
==============================================================================
Modified: vs-plugin/trunk/Nemerle.VsIntegration/Project/NemerleProjectNode.cs
==============================================================================
--- vs-plugin/trunk/Nemerle.VsIntegration/Project/NemerleProjectNode.cs (original)
+++ vs-plugin/trunk/Nemerle.VsIntegration/Project/NemerleProjectNode.cs Sat Nov 18 21:21:22 2006
@@ -213,8 +213,6 @@
// WAP ask the designer service for the CodeDomProvider corresponding to the project node.
//
-
-
// AKhropov: now NemerleFileNode provides these services
//OleServiceProvider.AddService(typeof(SVSMDCodeDomProvider), this.CodeDomProvider, false);
//OleServiceProvider.AddService(typeof(CodeDomProvider), CodeDomProvider.CodeDomProvider, false);
More information about the svn
mailing list