[svn] r6741: vs-plugin/trunk:
Nemerle.Compiler.Utils/Nemerle.Completion2/Engine/Engine-main.n
Nemerle.Comp...
IT
svnadmin at nemerle.org
Mon Oct 2 06:04:49 CEST 2006
Log:
1. Fixed method spelling.
2. Disabled #-colorizer exception.
Author: IT
Date: Mon Oct 2 06:04:45 2006
New Revision: 6741
Modified:
vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Engine/Engine-main.n
vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Engine/Engine.Properties.n
vs-plugin/trunk/Nemerle.VsIntegration/LanguageService/NemerleScanner.cs
Modified: vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Engine/Engine-main.n
==============================================================================
--- vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Engine/Engine-main.n (original)
+++ vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Engine/Engine-main.n Mon Oct 2 06:04:45 2006
@@ -22,7 +22,7 @@
public partial class Engine : ManagerClass
{
/// Make typed tree and constryct compile unit collection.
- private BuildTypesTreeAndInitProject() : void
+ private BuildTypedtreeAndInitProject() : void
{
Trace.WriteLine("### Build types tree!");
ClearCompilerMessages();
Modified: vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Engine/Engine.Properties.n
==============================================================================
--- vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Engine/Engine.Properties.n (original)
+++ vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Engine/Engine.Properties.n Mon Oct 2 06:04:45 2006
@@ -31,7 +31,7 @@
get
{
when (_project == null)
- BuildTypesTreeAndInitProject();
+ BuildTypedtreeAndInitProject();
return _project;
}
Modified: vs-plugin/trunk/Nemerle.VsIntegration/LanguageService/NemerleScanner.cs
==============================================================================
--- vs-plugin/trunk/Nemerle.VsIntegration/LanguageService/NemerleScanner.cs (original)
+++ vs-plugin/trunk/Nemerle.VsIntegration/LanguageService/NemerleScanner.cs Mon Oct 2 06:04:45 2006
@@ -149,7 +149,7 @@
public void SetSource(string source, int offset)
{
_prevToken = null;
- _lexer.SetString(_source = source, offset);
+ _lexer.SetString(_source = source.Replace("#", ""), offset);
}
}
}
More information about the svn
mailing list