[svn] r7729: vs-plugin/trunk: Nemerle.Compiler.Utils/Nemerle.Completion2/Engine/Engine.Completion.n Nemerl...

VladD2 svnadmin at nemerle.org
Mon Jul 2 02:36:10 CEST 2007


Log:
Sync with compiler

Author: VladD2
Date: Mon Jul  2 02:36:08 2007
New Revision: 7729

Modified:
   vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Engine/Engine.Completion.n
   vs-plugin/trunk/Nemerle.VsIntegration/LanguageService/NemerleLanguageService.cs

Modified: vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Engine/Engine.Completion.n
==============================================================================
--- vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Engine/Engine.Completion.n	(original)
+++ vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Engine/Engine.Completion.n	Mon Jul  2 02:36:08 2007
@@ -344,7 +344,7 @@
           
           // find locals
           def CmpOptions = System.StringComparison.InvariantCultureIgnoreCase;
-          foreach ((name, local) when name.Id.StartsWith (prefix, CmpOptions) in typer.GetLocals().GetLocals())
+          foreach ((name, local) when name.Id.StartsWith (prefix, CmpOptions) in typer.LocalContext.GetLocals())
             elems.Add(Elem.Local (local));
 
           // add namespaces and types

Modified: vs-plugin/trunk/Nemerle.VsIntegration/LanguageService/NemerleLanguageService.cs
==============================================================================
--- vs-plugin/trunk/Nemerle.VsIntegration/LanguageService/NemerleLanguageService.cs	(original)
+++ vs-plugin/trunk/Nemerle.VsIntegration/LanguageService/NemerleLanguageService.cs	Mon Jul  2 02:36:08 2007
@@ -163,7 +163,7 @@
 					new SourceTextManager(projectInfo.GetSource(request.FileName)));
 			}
 
-			return GetDefaultScope(request); // we don't fing paired token
+			return GetDefaultScope(request); // we don't find paired token
 		}
 		
 		#endregion



More information about the svn mailing list