Ronny Klier
e63cbb6175
Support copy entries from resource string table
15 years ago
Ronny Klier
20d023095f
Merge branch 'master' into string_resources
15 years ago
Ronny Klier
7d3df04903
First part to support copy from string table
15 years ago
Daniel Grunwald
ffc7e031f3
Merge branch '1.0'
15 years ago
Daniel Grunwald
6c94092dc5
Fixed ILAstOptimizer.CanBeExpressionStatement to include more types of assignments.
...
Fixed TypeAnalysis.IsEnum so that arrays of enums are not considered to be enums.
15 years ago
Alex Lyman
ed6380077f
- Reverted changes to display decimal.MinValue and decimal.MaxValue
...
- Altered InitializerTests to use constant literals instead of decimal.MinValue and decimal.MaxValue
15 years ago
Alex Lyman
e484d35fe2
- Altered the InitializerPeepholeTransforms' ArrayInitializer forward-scan to only look at the next instruction: in practice, CSC does not seem to generate code that needs anything more, and there are some questions as to the validity of the looping itself (i.e. what if there is a branch between them?
...
- Added another test to the InitializerTests, to validate that it handles deeper multi-dimensional arrays (I went 3x3x3 for simplicity)
15 years ago
Alex Lyman
9faee0ad8d
- Modified the InitializerPeepholeTransforms' Array Initializers to do a forward scan of the block instead of just checking the next instruction. The next-instruction thing breaks down under the case where you have an array-of-arrays (int[][])
...
- Added to the InitializerPeepholeTransforms' Array Initializers to detect the creation of a multi-dimensional array (int[,])
- Modified the ILCode.InitArray contract to take an ArrayType instead of just the element type, and passing with the ArrayType.Dimensions set accordingly.
- AstMethodBodyBuilder now used the ArrayType.Dimensions info to build a tree of ArrayInitializerExpressions from the raw, element-by-element list.
- Fixed OutputVisitor not calling StartNode for EmptyExpressions
Known issues:
- ArrayCreateExpression outputs extra space in the array specifier when using EmptyExpressions, ala: "new int[][, ]"
- The tree of ArrayInitializerExpressions outputs with blank lines before and after each block.
15 years ago
Alex Lyman
8dcea0b27b
- Made the InitializerTests pass, through three changes:
...
* Added new-lines as needed to make the source formatting match what the actual output was.
* Added code to CodeAssert to make it ignore #regions
* Added code to output decimal.MinValue and decimal.MaxValue as appropriate
15 years ago
Daniel Grunwald
65f5427ae6
Fix #162 Opening a file that's not a valid assembly displays exception stack trace
15 years ago
Daniel Grunwald
7789284161
Fix #74 Jumping to other type doesn't scroll the tree
15 years ago
Eusebiu Marcu
09a7400208
fix #236 ; show images in debugger evaluation tooltip
15 years ago
Daniel Grunwald
fde6361995
Fixed missing XML documentation on enum members.
15 years ago
Ed Harvey
fe865dbe73
Make ILSpy.BamlDecompiler.csproj compatible with VS2010
15 years ago
Ronny Klier
77c2411b6d
Decompile contents of resource file nodes + non-Stream resources
15 years ago
Ronny Klier
1bfc613b7c
Merge branch 'master' into string_resources
15 years ago
Ronny Klier
a07bea82ea
Decompile string resources in .resources TreeNodes and show them in a table.
15 years ago
Eusebiu Marcu
84dc577fba
Rename DebuggedData.cs -> DebugInformation.cs;
...
Properly update the DebugInformation.IsDebuggerLoaded
15 years ago
Ed Harvey
50e8fbc48e
Incorrect icon for const decimal fields. Closes #218
15 years ago
Eusebiu Marcu
3d0d4ee568
rename debugger assembly into ILSpy.Debugger.Plugin
15 years ago
Eusebiu Marcu
080bf7f8e3
Merge branch 'master' of https://github.com/icsharpcode/ILSpy into Debugger
15 years ago
Ed Harvey
8ba9cba665
Removed redundant 'view->analyze' menu entry. (issue #216 )
15 years ago
Daniel Grunwald
6af0d51969
Change version number to 2.0
15 years ago
Siegfried Pammer
72a1b71f82
reactivate code that turns complex properties into markup extensions if possible
15 years ago
Siegfried Pammer
2c6e34ef07
decompile Name attributes on type of current assembly to x:Name
15 years ago
Siegfried Pammer
a75e2a3c96
add ConnectMethodDecompiler
15 years ago
Siegfried Pammer
11b4f4babd
read connection ids as x:ConnectionId from binary stream
15 years ago
Siegfried Pammer
604d43076e
implement correct handling of Keys; add more unit tests
15 years ago
Siegfried Pammer
5ef8af1346
add more unit tests; use current type instead of declaring type for PropertyElements
15 years ago
Siegfried Pammer
b515326b74
reimplemented reading of keys
15 years ago
Siegfried Pammer
e0932a6860
implement detection of implicit elements and static resources
15 years ago
Siegfried Pammer
b9dd30a0ec
add ignored test for special cases with ResourceDictionaries; remove unneeded private modifier
15 years ago
Eusebiu Marcu
5c46ce6c54
Merge branch 'master' of git://github.com/icsharpcode/ILSpy into Iconbar
15 years ago
Daniel Grunwald
4f5fb6c140
Fixed references to enum values nested within generic types.
15 years ago
Daniel Grunwald
320b6d96c2
Fix some compiler warnings.
15 years ago
David Srbecký
f9d877b25a
Remove unreachable return statements. Closes #174 . Closes #192
15 years ago
David Srbecký
de4389cb39
Do not fall though the end of try-block. It should never happen in valid IL, but some obfuscators generate such code. Closes #164
15 years ago
Daniel Grunwald
19f5176186
Remove duplicate references in BamlDecompiler.Tests.
15 years ago
Daniel Grunwald
9cb4de3aa3
Fix InvalidCastException when hovering over a type reference.
15 years ago
Daniel Grunwald
9376ece056
Fixed references to enum values nested within generic types.
15 years ago
Daniel Grunwald
6daf7cb6bc
Fix some compiler warnings.
15 years ago
David Srbecký
6fd28e8b6e
Remove unreachable return statements. Closes #174 . Closes #192
15 years ago
David Srbecký
c31f9232c5
Do not fall though the end of try-block. It should never happen in valid IL, but some obfuscators generate such code. Closes #164
15 years ago
Daniel Grunwald
64f409ad28
Remove duplicate references in BamlDecompiler.Tests.
15 years ago
Daniel Grunwald
df94edc2d4
Fix InvalidCastException when hovering over a type reference.
15 years ago
Eusebiu Marcu
895a3d68b1
Move DisplaySettings to Options
15 years ago
Eusebiu Marcu
4f19d5732e
Merge branch 'master' of https://github.com/icsharpcode/ILSpy into Debugger
15 years ago
Eusebiu Marcu
025f024dcf
Merge branch 'master' of git://github.com/icsharpcode/ILSpy into Iconbar
15 years ago
Daniel Grunwald
c339b9270a
Fix crash in disassembler and decompiler when HasPInvokeInfo=true but PInvokeInfo=null (occurs with unmanaged methods in C++/CLI assemblies)
15 years ago
Daniel Grunwald
f2c001ab55
Show .NET runtime version.
15 years ago