Browse Source

Update to Boo 0.8.1.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@2940 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Daniel Grunwald 18 years ago
parent
commit
3144f01f07
  1. 2
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/ExpressionTests.cs
  2. 6
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/MemberTests.cs
  3. 2
      src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/StatementTests.cs

2
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/ExpressionTests.cs

@ -61,7 +61,7 @@ namespace NRefactoryToBooConverter.Tests @@ -61,7 +61,7 @@ namespace NRefactoryToBooConverter.Tests
TestExpr("var as List<T>[,]", "(var as (List[of T], 2))");
}
[Test, Ignore("Boo uses BinaryOperatorExpression for isa")]
[Test]
public void TypeTestExpressionComplexType()
{
TestExpr("var is List<T>[,]", "(var isa (List[of T], 2))");

6
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/MemberTests.cs

@ -141,7 +141,7 @@ namespace NRefactoryToBooConverter.Tests @@ -141,7 +141,7 @@ namespace NRefactoryToBooConverter.Tests
}
[Test]
[Ignore("Fix requires change to Boo.Lang.Compiler.dll")]
// [Ignore("Fix requires change to Boo.Lang.Compiler.dll")]
public void AbstractMethodInInterface()
{
TestInInterface("void Run();", "def Run() as System.Void");
@ -241,7 +241,7 @@ namespace NRefactoryToBooConverter.Tests @@ -241,7 +241,7 @@ namespace NRefactoryToBooConverter.Tests
}
[Test]
[Ignore("Fix requires change to Boo.Lang.Compiler.dll")]
// [Ignore("Fix requires change to Boo.Lang.Compiler.dll")]
public void AbstractPropertyInInterface()
{
TestInInterface("string Prop { get; }", "Prop as System.String:\n\tget");
@ -285,7 +285,7 @@ namespace NRefactoryToBooConverter.Tests @@ -285,7 +285,7 @@ namespace NRefactoryToBooConverter.Tests
}
[Test]
[Ignore("Fix requires change to Boo.Lang.Compiler.dll")]
// [Ignore("Fix requires change to Boo.Lang.Compiler.dll")]
public void EventInInterface()
{
TestInInterface("event EventHandler Closed;", "event Closed as EventHandler");

2
src/AddIns/BackendBindings/Boo/NRefactoryToBooConverter/Test/StatementTests.cs

@ -143,7 +143,7 @@ namespace NRefactoryToBooConverter.Tests @@ -143,7 +143,7 @@ namespace NRefactoryToBooConverter.Tests
public void TryCatch()
{
TestStatement("try { Action(); } catch { DisplayError(); }",
"try:\n\tAction()\nexcept:\n\tDisplayError()");
"try:\n\tAction()\nexcept :\n\tDisplayError()");
}
[Test]

Loading…
Cancel
Save