[svn]
r7243: vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/CodeModel/MethodTipInfo.n
IT
svnadmin at nemerle.org
Thu Jan 11 02:26:10 CET 2007
Log:
Fixed MethodInfo parameter number bug.
Author: IT
Date: Thu Jan 11 02:26:08 2007
New Revision: 7243
Modified:
vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/CodeModel/MethodTipInfo.n
Modified: vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/CodeModel/MethodTipInfo.n
==============================================================================
--- vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/CodeModel/MethodTipInfo.n (original)
+++ vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/CodeModel/MethodTipInfo.n Thu Jan 11 02:26:08 2007
@@ -59,13 +59,14 @@
def findComma(token : Token)
{
- | LooseGroup as lg when lg.Next != null =>
+ | LooseGroup as lg =>
_nextParameters.Add(Location(
lg.Location.FileIndex,
lg.Location.EndLine, lg.Location.EndColumn,
lg.Location.EndLine, lg.Location.EndColumn + 1));
+ when (lg.Next != null)
findComma(lg.Next);
()
More information about the svn
mailing list