.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Siegfried Pammer 1e560ac1ba Extend ConvertConstructorCallIntoInitializer to support C# 6 property initializers 8 years ago
..
.gitignore Run correctness tests with roslyn, and add some roslyn-based pretty-tests as well. 9 years ago
AnonymousTypes.cs fix #772 - Creation of an anonymous array doesn't decompile properly 9 years ago
AnonymousTypes.il Move all pretty-tests to the same namespace 9 years ago
AnonymousTypes.opt.il Move all pretty-tests to the same namespace 9 years ago
Async.cs Fix NullReferenceException in AssemblyTreeNode.get_ToolTip 9 years ago
AutoProperties.cs Extend ConvertConstructorCallIntoInitializer to support C# 6 property initializers 8 years ago
AutoProperties.opt.roslyn.il Extend ConvertConstructorCallIntoInitializer to support C# 6 property initializers 8 years ago
AutoProperties.roslyn.il Extend ConvertConstructorCallIntoInitializer to support C# 6 property initializers 8 years ago
CompoundAssignmentTest.cs Run correctness tests with roslyn, and add some roslyn-based pretty-tests as well. 9 years ago
CompoundAssignmentTest.il Move all pretty-tests to the same namespace 9 years ago
CompoundAssignmentTest.opt.il Move all pretty-tests to the same namespace 9 years ago
CompoundAssignmentTest.opt.roslyn.il Move all pretty-tests to the same namespace 9 years ago
CompoundAssignmentTest.roslyn.il Move all pretty-tests to the same namespace 9 years ago
ExceptionHandling.cs Remove unused usings in solution; remove dead code; unify namespaces 9 years ago
ExceptionHandling.il Move all pretty-tests to the same namespace 9 years ago
ExceptionHandling.opt.il Move all pretty-tests to the same namespace 9 years ago
HelloWorld.cs Move all pretty-tests to the same namespace 9 years ago
HelloWorld.il Move all pretty-tests to the same namespace 9 years ago
InlineAssignmentTest.cs Run correctness tests with roslyn, and add some roslyn-based pretty-tests as well. 9 years ago
InlineAssignmentTest.il Move all pretty-tests to the same namespace 9 years ago
InlineAssignmentTest.opt.il Move all pretty-tests to the same namespace 9 years ago
Loops.cs ConditionDetection: Try to prefer 'break;' over other gotos 8 years ago
Readme.txt Initial attempt at short-circuiting if conditions 9 years ago
ShortCircuit.cs Remove unused usings in solution; remove dead code; unify namespaces 9 years ago
ShortCircuit.il Move all pretty-tests to the same namespace 9 years ago
ShortCircuit.opt.il Move all pretty-tests to the same namespace 9 years ago
ShortCircuit.opt.roslyn.il Move all pretty-tests to the same namespace 9 years ago
ShortCircuit.roslyn.il Move all pretty-tests to the same namespace 9 years ago

Readme.txt

The files in this folder are prettiness tests for the decompiler.

The NUnit class running these tests is ../PrettyTestRunner.cs.
It uses pre-defined IL files in order to avoid test failures in cause of compiler changes.
We test different C# compiler versions as well (in future).

Each test consists of a C# file for comparing the resulting code and a source IL file used for assembling/decompiling.

We:
* assemble a test case (call the result "executable 1")
* decompile "executable 1" to C# ("decompiled.cs")
* compare "decompiled.cs" to "source.cs"

The tests pass if the code looks exactly the same as the input code, ignoring comments, empty lines and preprocessor directives.

Note: If you delete an .il file, it will be re-created on the next test run.
This can be helpful when modifying the test case; but it also might have unexpected results when your C# compiler differs
from the compiler previously used to create the .il file.