[svn] r6574: vs-plugin/trunk:
Nemerle.Compiler.Utils/Nemerle.Completion2/CodeModel/Project.n
Nemerle.VsInt...
IT
svnadmin at nemerle.org
Thu Aug 24 05:34:36 CEST 2006
Log:
Fixed quick tips in patterns.
Author: IT
Date: Thu Aug 24 05:34:32 2006
New Revision: 6574
Modified:
vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/CodeModel/Project.n
vs-plugin/trunk/Nemerle.VsIntegration/NemerleConstants.cs
vs-plugin/trunk/Nemerle.VsIntegration/NemerleLanguage.cs
vs-plugin/trunk/Nemerle.VsIntegration/NemerlePackage.cs
Modified: vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/CodeModel/Project.n
==============================================================================
--- vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/CodeModel/Project.n (original)
+++ vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/CodeModel/Project.n Thu Aug 24 05:34:32 2006
@@ -399,8 +399,8 @@
| Application as app => // { name : TypeInfo; arg : Pattern; }
- checkObject(pattern.Location, app.name);
DoPattern(app.arg);
+ checkObject(pattern.Location, app.name);
| Record(args) => // { args : list [IMember * Pattern]; }
Modified: vs-plugin/trunk/Nemerle.VsIntegration/NemerleConstants.cs
==============================================================================
--- vs-plugin/trunk/Nemerle.VsIntegration/NemerleConstants.cs (original)
+++ vs-plugin/trunk/Nemerle.VsIntegration/NemerleConstants.cs Thu Aug 24 05:34:32 2006
@@ -14,7 +14,7 @@
public const string ProjectExtension = "nproj";
// used by registration and about box/splash screen
- public const string ProductDetails = "Nemerle Visual Studio Integration";
+ public const string ProductDetails = "Nemerle VS Integration";
public const string ProductID = "1.0";
// Âíčěŕíčĺ, GUID LanguageServiceGuidString íóćíî čçěĺíčňü ĺůĺ č çäĺńü:
Modified: vs-plugin/trunk/Nemerle.VsIntegration/NemerleLanguage.cs
==============================================================================
--- vs-plugin/trunk/Nemerle.VsIntegration/NemerleLanguage.cs (original)
+++ vs-plugin/trunk/Nemerle.VsIntegration/NemerleLanguage.cs Thu Aug 24 05:34:32 2006
@@ -141,6 +141,16 @@
case ParseReason.Autos:
break;
case ParseReason.Check:
+ /*
+ TextSpan ts = new TextSpan();
+
+ ts.iStartLine = 0;
+ ts.iEndLine = 0;
+ ts.iStartIndex = 1;
+ ts.iEndIndex = 10;
+
+ request.Sink.AddError(request.FileName, "456", ts, Severity.Error);
+ */
break;
case ParseReason.CodeSpan:
break;
Modified: vs-plugin/trunk/Nemerle.VsIntegration/NemerlePackage.cs
==============================================================================
--- vs-plugin/trunk/Nemerle.VsIntegration/NemerlePackage.cs (original)
+++ vs-plugin/trunk/Nemerle.VsIntegration/NemerlePackage.cs Thu Aug 24 05:34:32 2006
@@ -67,7 +67,7 @@
GlobalConstants.ProductDetails,
GlobalConstants.ProductID,
IconResourceID=300)]
- [ProvideLoadKey("standard", GlobalConstants.ProductID, GlobalConstants.ProductDetails, "nemerle.org", 104)]
+ [ProvideLoadKey("standard", GlobalConstants.ProductID, GlobalConstants.ProductDetails, "", 104)]
[ProvideService(typeof(NemerleLanguage), ServiceName = GlobalConstants.LanguageName)]
[ProvideService(typeof(INemerleLibraryManager))]
[ProvideLanguageService(typeof(NemerleLanguage), GlobalConstants.LanguageName, 100,
More information about the svn
mailing list