82 Commits (6cb77e63e93ab0151083c513397251672bc28dc9)

Author SHA1 Message Date
Daniel Grunwald 6cb77e63e9 Fully qualify ambiguous type names. 14 years ago
Daniel Grunwald 69ac94363d Resolve variable naming conflicts that occur with anonymous methods. 14 years ago
Daniel Grunwald 03183ab7bf Fixed crash in PatternStatementTransform (foreach loop with captured variables). 14 years ago
Daniel Grunwald fe4b3d44a0 Fixed post-increment operator on fields in generic classes. 15 years ago
Daniel Grunwald cc0ab56869 Add pre- and post-increment support for properties (both instance and static) and for multi-dimensional arrays. 15 years ago
Daniel Grunwald d91b56b033 Add support for pre- and post-increment of dereferenced pointers "(*ptr)++". 15 years ago
Daniel Grunwald 52b178df90 Make the pre-increment operators work on static fields. 15 years ago
Daniel Grunwald 1df82cc3d1 Improved support for compound assignments and the pre-increment operator. 15 years ago
Daniel Grunwald 8770d54506 Don't use checked/unchecked expressions within an ExpressionStatement (#90) 15 years ago
Daniel Grunwald 18fde488f1 Fixed crash in AddCheckedBlocks. 15 years ago
Daniel Grunwald 942131b06d Add support for checked/unchecked statements. 15 years ago
Daniel Grunwald 6a0d365fe4 Fix crash in DeclareVariables when an anonymous method which contains variable declarations was used in the initializer of a variable declaration in the parent method. 15 years ago
Daniel Grunwald cca7547789 Fixed some bugs in DeclareVariables. 15 years ago
Daniel Grunwald 8e3f62ba14 Fix issues with 'DeclareVariables' and adjust 'foreach' pattern to the new variable handling. 15 years ago
Daniel Grunwald c7bbdcd0cb Improved variable placement. 15 years ago
Daniel Grunwald 3211ccbf6a Introduce using declarations in decompiled code. 15 years ago
Daniel Grunwald 039483ddbd Optimize PatternStatementTransform. 15 years ago
Daniel Grunwald dbbd5d872b Add support for destructors. Closes #73. 15 years ago
Daniel Grunwald bc229df848 Handle pointer arithmetic. 15 years ago
Daniel Grunwald 1b90809728 Implemented 'fixed' statement for arrays. 15 years ago
Daniel Grunwald 3759b614cf Add support for calling methods on pointers (ptr->ToString()). 15 years ago
Daniel Grunwald 7b2c444181 Add support for unsafe code. Closes #48. 15 years ago
Daniel Grunwald 2601a4901a Fix "Missing variable name in created C# code". Closes #81. 15 years ago
Daniel Grunwald 01d7e2abbd Use the same representation for parameters and variables. 15 years ago
Daniel Grunwald bf6e4bbfd9 Transform 'try { try {} catch {} } finally {}' to 'try {} catch {} finally {}'. Closes #77. 15 years ago
Daniel Grunwald f95c53384c Fix transformation of closure variables for anonymous methods within generic methods. 15 years ago
Daniel Grunwald e9c6aa15e6 Fix switch on string when the compiler introduced a temporary variable for the string being switched on. 15 years ago
Daniel Grunwald b161b7e947 Fix conversion of field initializers when there are constructors that call 'this..ctor(...);' 15 years ago
Daniel Grunwald e0fb40fbcc Fixed decompilation of lambda expressions within generic classes. 15 years ago
Daniel Grunwald 98678dcc4e Fix switch expression. 15 years ago
Daniel Grunwald 55e51394b9 Add support for switch over strings. 15 years ago
Daniel Grunwald 2892c9d50b Implemented decompilation of 'lock'. 15 years ago
Daniel Grunwald de3d9117c4 Make collapsing of "x = x + y" to "x += y" work in a few more cases. 15 years ago
Daniel Grunwald ddd7b9d526 Fix NullReferenceException when decompiling an automatic property within a generic class. 15 years ago
Daniel Grunwald f3069b99f9 Add support for decompiling automatic events. 15 years ago
Daniel Grunwald 8ffb317cc4 Add support for decompiling do-while loops. 15 years ago
Daniel Grunwald 41d6c3f6eb Don't show compiler-generated code for automatic properties. Closes #69. 15 years ago
Daniel Grunwald 7d1d168313 Add options dialog. 15 years ago
Daniel Grunwald cfe8df597a Convert assignments to fields within constructors into field initializers. 15 years ago
Daniel Grunwald 70b95847fe Eliminate cached delegate initialization. 15 years ago
Daniel Grunwald 60c02d577b Change namespace to ICSharpCode.Decompiler. 15 years ago
Daniel Grunwald d80719c4ee Adjust ILSpy to NRefactory changes. 15 years ago
David Srbecký 1bc30662b0 Rewritten goto removal. 15 years ago
Artur Zgodziski e8c2536606 BugFix: incorrectly removed empty constructors with parameters 15 years ago
Daniel Grunwald e8f9febcc0 Replace 'i += 1' with 'i++'. Closes #33. 15 years ago
Daniel Grunwald d5dcfea7e2 Add pattern for "for" loops. Closes #4. 15 years ago
Daniel Grunwald 3177b969e5 Fix foreach pattern. Closes #16. 15 years ago
David Srbecký b4c2b3f92a Determine loop condition from CFG 15 years ago
Daniel Grunwald b388bfefc9 Rename UsingStatementTransform to PatternStatementTransform. 15 years ago
Daniel Grunwald e7efab1f5b Add foreach pattern. Closes #16. 15 years ago