511 Commits (a318ce67bed3482bae7ea13a92ab124c315fe7db)

Author SHA1 Message Date
David Srbecký 6222ef7bbf Do stack analysis on the whole filter body. Closes #88 15 years ago
David Srbecký 7ac44375ff Fixed NullReferenceException caused by unreachable IL code. It was generally caused by throw followed by catch leave. 15 years ago
Daniel Grunwald d805e07ffe Fixed decompilation of nested lambdas. 15 years ago
Daniel Grunwald ff28004e5a Don't introduce usings when only a single method is being decompiled. 15 years ago
Daniel Grunwald 8ee23f5243 Add support for query continuations. 15 years ago
Daniel Grunwald 6f4fdd00f7 Get rid of transparent identifiers in query expressions. 15 years ago
Daniel Grunwald 83489b2cc8 Add support for decompiling query expressions. 15 years ago
Daniel Grunwald cd630c3fbb Fix #87: missing cast when calling explicit interface implementation. 15 years ago
Daniel Grunwald 6229a1dba8 Fix unit tests. 15 years ago
Daniel Grunwald e25a05278b Avoid using the incorrect FilterEnd property. 15 years ago
Daniel Grunwald 2a462c3451 Add support for arglist opcode. 15 years ago
Daniel Grunwald 1e66e970bf Add support for mkrefany opcode. 15 years ago
Daniel Grunwald 8a7b51d7de Allow automatic properties with explicit interface implementation. 15 years ago
Daniel Grunwald 542bb9db2f Improved handling of nested display classes. 15 years ago
Daniel Grunwald 15f5c7a0b4 CachedDelegateInitialization: use less aggressive inlining 15 years ago
Daniel Grunwald f791897829 Implemented CachedDelegateInitialization transform for local variables (used for capturing lamdbas within loops). 15 years ago
Daniel Grunwald be7ae61b8f Add support for anonymous types. 15 years ago
Daniel Grunwald 6cb77e63e9 Fully qualify ambiguous type names. 15 years ago
Daniel Grunwald 6c6dc0e36b Fixed enum constants. 15 years ago
Daniel Grunwald d550d55560 Fixed 'as' and 'is' operators for value types. 15 years ago
Daniel Grunwald 33a7120555 Add support for negated enum constants (e.g. "v &= ~Enum.Flag;"). Closes #114. 15 years ago
Daniel Grunwald a59462a2c8 Fixed decompiler crashes. 15 years ago
Daniel Grunwald 00c4ccb7a1 Fixed decompilation of "catch{}" blocks (catch without exception type) 15 years ago
Daniel Grunwald 69ac94363d Resolve variable naming conflicts that occur with anonymous methods. 15 years ago
Daniel Grunwald 9ad5124603 Fixed type analysis for collection initializers. Closes #104. 15 years ago
Daniel Grunwald 55dec5389c Fix crash when decompiling calli instruction. Closes #113. 15 years ago
Artur Zgodziski 8462984233 Improved names of indexers in the tree view. 15 years ago
Artur Zgodziski c81f81827f Implemented printing of .overrides and interfaces directives in IL. 15 years ago
Artur Zgodziski 2c70fb087c Fixed MethodOverrides analyzer. 15 years ago
Artur Zgodziski e8d81ed17c Fixed "Overrided By" method analyzer. Added similar analyzer for properties. 15 years ago
Artur Zgodziski 368cac6c7f Added support for new modifier (methods and properties only). 15 years ago
Artur Zgodziski c15d5d304e Fixed accessibility of property accessors. 15 years ago
Daniel Grunwald a905ca19f3 Expose the generated compilation unit in the AstBuilder. 15 years ago
Daniel Grunwald 2e4f0411cd Use operator syntax when decompiling operator methods. Closes #103. 15 years ago
Daniel Grunwald 63e11492a6 Fixed decompilation of indexers (when decompiling the member, not the whole type) 15 years ago
Daniel Grunwald 03183ab7bf Fixed crash in PatternStatementTransform (foreach loop with captured variables). 15 years ago
Daniel Grunwald 6376110913 Fixed issues with "fixed" statement that were introduced by recent changes. 15 years ago
Daniel Grunwald fe4b3d44a0 Fixed post-increment operator on fields in generic classes. 15 years ago
Daniel Grunwald 8cb85826fc Fixed type substitution for arrays. Closes #94. 15 years ago
Daniel Grunwald 5e2641732a Fixed naming variables after the property they get their initial value from. 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 4c7a896a84 Implemented post-increment operator. Closes #76. 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 b5e29f0e05 Adjust unit tests. 15 years ago
Daniel Grunwald 1cd79a1301 Use type analysis to introduce casts to float/double only where required. 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 7e6490a816 Simplify conv.i8(ldc.i4(x)) to ldc.i8(x). 15 years ago