Matt Ward
48b51e1276
Fix code coverage tree property tests.
...
Property getter and setter methods were not being correctly identified as properties due to the code coverage method signature being used as the method name.
13 years ago
Siegfried Pammer
9a1824d459
remove IHighlightingDefinition2
13 years ago
Siegfried Pammer
4d8c634587
Merge branch 'master' of github.com:icsharpcode/SharpDevelop into newNR
...
Conflicts:
src/AddIns/DisplayBindings/AvalonEdit.AddIn/Src/AvalonEditSyntaxHighlighterAdapter.cs
src/AddIns/DisplayBindings/AvalonEdit.AddIn/Src/CustomizableHighlightingColorizer.cs
src/AddIns/Misc/SearchAndReplace/Project/Engine/SearchManager.cs
src/AddIns/Misc/SearchAndReplace/Project/Gui/SearchResultNode.cs
src/Libraries/AvalonEdit/ICSharpCode.AvalonEdit/Highlighting/HighlightedLine.cs
src/Libraries/AvalonEdit/ICSharpCode.AvalonEdit/Highlighting/IHighlighter.cs
src/Main/Base/Project/Src/Editor/IEditorControlService.cs
src/Main/Base/Project/Src/Editor/ISyntaxHighlighter.cs
src/Main/Base/Project/Src/Editor/Search/SearchResultMatch.cs
src/Main/Base/Project/Src/Editor/Search/SearchResultsPad.cs
src/Main/Base/Project/Src/Services/RefactoringService/FindReferencesAndRenameHelper.cs
13 years ago
Siegfried Pammer
c205964d87
fix import/export of nested named colors
13 years ago
PeterForstmeier
4655c6fd3f
CodeCoverageOptionPanel
13 years ago
Daniel Grunwald
16aa0c6c28
Rename IParsedFile -> IUnresolvedFile to make clear it belongs to the unresolved type system.
13 years ago
Daniel Grunwald
4a6a43d0d1
Change output path - build everything into \bin\Debug in NRefactory directory (not into ICSharpCode.NRefactory subdirectory).
13 years ago
Daniel Grunwald
7a3b25b4dc
Add WriteTextTo() method to ITextSource.
13 years ago
Daniel Grunwald
9a9485a49d
Add ProjectReference class to NRefactory to simplify creating the type system for a solution with multiple projects.
13 years ago
Mike Krüger
5241e34d02
Merge pull request #91 from mono-soc-2012/simonl-attributesection-fix
...
Fix end location of AttributeSections
13 years ago
Simon Lindgren
ea49b1a6cf
[CodeIssues] Add StaticFieldInGenericTypeIssue.
13 years ago
Simon Lindgren
7c19dfa4ef
[Parser] Set locations of AttributeSections correctly.
13 years ago
Simon Lindgren
4424f0efd9
[Parser] Add failing unit tests for AttributeSections with multiple attributes.
13 years ago
Simon Lindgren
e5f5d6c9e2
[CodeIssues] Add ThreadStaticOnInstanceFieldsIssue.
13 years ago
Siegfried Pammer
0da19d4e3b
add support for customized colors to SearchResultsPad
13 years ago
Siegfried Pammer
edd9edc3ba
allow colors from referenced rulesets to be customized
13 years ago
Siegfried Pammer
02449aa2b7
implement escape rules in StringParser
13 years ago
Siegfried Pammer
326d2410fe
use highlighting customizations in Diff-Tooltip
13 years ago
Siegfried Pammer
43bbdbe1c6
fix bug MouseHoverLogic to make it easier to show Diff-Tooltip in editor: start MouseHover already on MouseEnter
13 years ago
Siegfried Pammer
132afcb96d
add Debugger AddIn dependency on ILSpy AddIn - should fix http://community.sharpdevelop.net/forums/t/16050.aspx
13 years ago
Erik Källén
fec84f8b98
Implemented missing operation on new SeekableStreamReader
13 years ago
Daniel Grunwald
699d841e06
Merge pull request #90 from erik-kallen/FixOrderByParsing
...
Fix order by parsing
13 years ago
Erik Källén
7794385a47
Enabled query expander tests now that multiple orderings are supported.
13 years ago
Erik Källén
32d43b2534
Fixed query orderings when ordering by more than one expression.
13 years ago
Simon Lindgren
cdfde8bcef
[CodeActions] Greatly improved OptionalParameterCouldBeSkippedIssue.
...
It now handles named parameters much better, has more actions, and less code duplication.
13 years ago
Mansheng Yang
8635a6f604
Merge remote-tracking branch 'upstream/master' into mansheng
13 years ago
Mansheng Yang
d9dbd25be7
[CodeIssue] Added RedundantArrayInitializerCommaIssue
13 years ago
Daniel Grunwald
62a8b20208
Fix icsharpcode/NRefactory#89 : explicit conversion of array to generic IList fails when array covariance is used.
13 years ago
Simon Lindgren
82ab94fa1f
[CodeIssues] OptionalParameterCouldBeSkippedIssue: Check for unmappable arguments.
13 years ago
Simon Lindgren
d69abeae95
[CodeActions] Handle resolution errors in IterateViaForeachAction.
13 years ago
Simon Lindgren
1371e6db61
[CodeIssues] Fix bugs in RedundantCatchIssue.
13 years ago
Simon Lindgren
d6054d1035
[CodeIssues] Add ExceptionRethrowIssue
13 years ago
Mansheng Yang
78cf6b1718
Merge remote-tracking branch 'upstream/master' into mansheng
...
Conflicts:
ICSharpCode.NRefactory.CSharp/ICSharpCode.NRefactory.CSharp.csproj
ICSharpCode.NRefactory.Tests/ICSharpCode.NRefactory.Tests.csproj
13 years ago
Mike Krüger
e97b6b22cd
[Parser] Fixed some optional comma bugs.
13 years ago
Mansheng Yang
ff4b265de7
[CodeIssue] Added MethodNeverReturnsIssue
13 years ago
Daniel Grunwald
087aee7fe8
Simplify parser API.
13 years ago
Mansheng Yang
83776a15f9
[CodeIssue] Added RedundantAttributeParenthesesIssue
13 years ago
Mike Krüger
34932efc78
[Parser] Hacked work around for parser error.
13 years ago
Mansheng Yang
29c686ab0a
[CodeIssue] Added DoubleNegationIssue
13 years ago
Mike Krüger
f81ecd7e29
[Parser] Implemented own seekable stream reader.
13 years ago
Daniel Grunwald
102ce25f4c
Merge pull request #87 from erik-kallen/DynamicExpressionsUseNamedArgumentResolveResult
...
Use NamedArgumentResolveResult for dynamic invocations.
13 years ago
Daniel Grunwald
927f263d76
Merge pull request #85 from erik-kallen/QueryExpressionExpander
...
Implemented QueryExpressionExpander.
13 years ago
Daniel Grunwald
26409db2bb
Implemented explicit conversions - invalid casts now resolve to Conversion.None.
13 years ago
Simon Lindgren
73b80fc36b
[CodeIssues] CallToObjectViaBaseIssue: Ignore calls which do not target members of 'base'.
13 years ago
Daniel Grunwald
eaba9798d3
Rename 'cu' to 'syntaxTree'.
13 years ago
Daniel Grunwald
979fa91a2e
Fix icsharpcode/NRefactory#88 : implicit conversion between type parameters.
...
Convert from T to U where T : class, U. Only T is known to be a reference type; U is not.
C# still classifies the conversion as a reference conversion.
13 years ago
Erik Källén
703889298e
Ensure that named argument instances are unique for dynamic invocations.
13 years ago
Daniel Grunwald
273178a141
Rename CompilationUnit to SyntaxTree.
13 years ago
Daniel Grunwald
bda3b311d4
Merge branch 'master' into newNR
13 years ago
Daniel Grunwald
4e1b21f6d4
Additional override completion unit tests.
13 years ago