[svn]
r7582: vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Tests:
Heavy.Tests/Runner.n Refact...
phantom
svnadmin at nemerle.org
Mon Apr 9 19:07:01 CEST 2007
Log:
ConsoleTest project added to refactoring solution.
Author: phantom
Date: Mon Apr 9 19:06:58 2007
New Revision: 7582
Modified:
vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Tests/Heavy.Tests/Runner.n
vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Tests/Refactoring.Playground.sln
vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Tests/Refactoring/TestProjectTwo/SmallTestsOne.n
Modified: vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Tests/Heavy.Tests/Runner.n
==============================================================================
--- vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Tests/Heavy.Tests/Runner.n (original)
+++ vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Tests/Heavy.Tests/Runner.n Mon Apr 9 19:06:58 2007
@@ -32,7 +32,7 @@
def suite = FindDefinitionTestProjectTwo();
//def suite = FindUsagesTestProjectTwo();
suite.SetUp();
- suite.Test047();
+ suite.Test043();
}
public static Explode(this s : string, delimiter : string) : list[string]
Modified: vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Tests/Refactoring.Playground.sln
==============================================================================
--- vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Tests/Refactoring.Playground.sln (original)
+++ vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Tests/Refactoring.Playground.sln Mon Apr 9 19:06:58 2007
@@ -9,6 +9,8 @@
EndProject
Project("{EDCC3B85-0BAD-11DB-BC1A-00112FDE8B61}") = "TestProjectTwo", "Refactoring\TestProjectTwo\TestProjectTwo.nproj", "{F4F49957-5B36-48D3-99CA-2A9BFC6D797C}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleTest", "..\..\..\ConsoleTest\ConsoleTest.csproj", "{D5EB7C03-398D-4C41-91C9-4ED474CC1312}"
+EndProject
Global
GlobalSection(TextTemplating) = postSolution
TextTemplating = 1
@@ -34,6 +36,10 @@
{F4F49957-5B36-48D3-99CA-2A9BFC6D797C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F4F49957-5B36-48D3-99CA-2A9BFC6D797C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F4F49957-5B36-48D3-99CA-2A9BFC6D797C}.Release|Any CPU.Build.0 = Release|Any CPU
+ {D5EB7C03-398D-4C41-91C9-4ED474CC1312}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {D5EB7C03-398D-4C41-91C9-4ED474CC1312}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {D5EB7C03-398D-4C41-91C9-4ED474CC1312}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {D5EB7C03-398D-4C41-91C9-4ED474CC1312}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Modified: vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Tests/Refactoring/TestProjectTwo/SmallTestsOne.n
==============================================================================
--- vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Tests/Refactoring/TestProjectTwo/SmallTestsOne.n (original)
+++ vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/Tests/Refactoring/TestProjectTwo/SmallTestsOne.n Mon Apr 9 19:06:58 2007
@@ -68,14 +68,19 @@
WriteLine(foo); // usage {43}
}
- public LocalFunction(foo6667 : int): void // definition {46} foo
+ public LocalFunction(foo : int): void // definition {46} foo
{
- def localFunction(foo6668 : int) // definition {47} foo //possibly not found definition {47}
+ def localFunction(bar : int) // definition {47}
{
- WriteLine(foo6668) // usage {47}
+ WriteLine(bar) // usage {47}
}
- localFunction(foo6667); // usage {46}
+ def localFunction2(foo : int) // definition {48}
+ {
+ WriteLine(foo) // usage {48}
+ }
+
+ localFunction(foo); // usage {46}
}
}
More information about the svn
mailing list