Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/NRefactory.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorDaniel Grunwald <daniel@danielgrunwald.de>2011-06-05 21:25:24 +0400
committerDaniel Grunwald <daniel@danielgrunwald.de>2011-06-05 21:26:09 +0400
commitb4bcc8036fb2177e26076a02137336c28f8ee283 (patch)
treea09fc9fe99c5a798af3351c4ca6fc0dab03767e7 /README
parent0afdacd12915cfaab12e2b5c16f7a560569d5889 (diff)
Add ICSharpCode.Editor assembly.
Diffstat (limited to 'README')
-rw-r--r--README17
1 files changed, 15 insertions, 2 deletions
diff --git a/README b/README
index 55144856..4c6a493a 100644
--- a/README
+++ b/README
@@ -1,5 +1,9 @@
Overview of the NRefactory library:
+ICSharpCode.Editor:
+ Interfaces that abstract from the text editor control used.
+ Maybe future AvalonEdit versions will directly implement these interfaces, but you could also write adapters for other editors.
+
ICSharpCode.NRefactory.TypeSystem:
Contains a language-independent representation of the .NET type system.
@@ -10,8 +14,17 @@ ICSharpCode.NRefactory.CSharp.Ast:
Abstract Syntax Tree for C#
ICSharpCode.NRefactory.CSharp.Resolver:
- Semantic analysis for C#
-
+ Semantic analysis for C# (resolving the meaning of expressions)
+
+ICSharpCode.NRefactory.CSharp.Analysis:
+ Semantic analysis for C# (additional analysis functionality)
+
+ICSharpCode.NRefactory.Documentation:
+ Classes for working with .xml documentation files.
+
+ICSharpCode.NRefactory.PatternMatching:
+ Provides classes for pattern matching over the C# and VB ASTs.
+
ICSharpCode.NRefactory.Util:
Various helper classes.