Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
0xF6 committed Jun 5, 2024
1 parent e7cb0ae commit 749f63a
Show file tree
Hide file tree
Showing 8 changed files with 3 additions and 92 deletions.
21 changes: 0 additions & 21 deletions test/project_system_test/parse_test.cs

This file was deleted.

12 changes: 0 additions & 12 deletions test/project_system_test/project_system_test.csproj

This file was deleted.

28 changes: 0 additions & 28 deletions test/shared/runtime/00_method_return.mana

This file was deleted.

6 changes: 0 additions & 6 deletions test/shared/runtime/Application.mana

This file was deleted.

10 changes: 0 additions & 10 deletions test/shared/runtime/Assert.mana

This file was deleted.

6 changes: 0 additions & 6 deletions test/shared/runtime/AssertFailedException.mana

This file was deleted.

6 changes: 0 additions & 6 deletions test/shared/runtime/runtime_test.wproj

This file was deleted.

6 changes: 3 additions & 3 deletions test/vc_test/il_test.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public void DeconstructOpcodes1()
gen.Emit(OpCodes.ADD);
gen.Emit(OpCodes.DIV);
gen.Emit(OpCodes.LDARG_1);
var (result, _) = ILReader.Deconstruct(gen.BakeByteArray(), null);
var (result, _) = ILReader.Deconstruct(gen.BakeByteArray(), "");


Assert.AreEqual(OpCodes.ADD.Value, result[0]);
Expand All @@ -26,7 +26,7 @@ public void DeconstructOpcodes2()

gen.Emit(OpCodes.LDC_I4_S, 1448);
gen.Emit(OpCodes.LDC_I4_S, 228);
var (result, _) = ILReader.Deconstruct(gen.BakeByteArray(), null);
var (result, _) = ILReader.Deconstruct(gen.BakeByteArray(), "");


Assert.AreEqual(OpCodes.LDC_I4_S.Value, result[0]);
Expand All @@ -52,7 +52,7 @@ public unsafe void LocalsGeneratorTest()

var str = gen.BakeDebugString();
var bytes = gen.BakeByteArray();
var (result, _) = ILReader.Deconstruct(bytes, null);
var (result, _) = ILReader.Deconstruct(bytes, "");
}


Expand Down

0 comments on commit 749f63a

Please sign in to comment.