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
diff options
context:
space:
mode:
authorDaniel Grunwald <daniel@danielgrunwald.de>2012-07-30 22:22:43 +0400
committerDaniel Grunwald <daniel@danielgrunwald.de>2012-07-30 22:22:43 +0400
commit273178a141eaa6f5f65615767a2df570a67bca46 (patch)
tree3b3d4a81a9b7e430967ac9cccf09b1be099fc0b3 /ICSharpCode.NRefactory.CSharp.AstVerifier
parentcc37a7179d5450ca4f995a37b94972e66ed8493b (diff)
Rename CompilationUnit to SyntaxTree.
Diffstat (limited to 'ICSharpCode.NRefactory.CSharp.AstVerifier')
-rw-r--r--ICSharpCode.NRefactory.CSharp.AstVerifier/Main.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ICSharpCode.NRefactory.CSharp.AstVerifier/Main.cs b/ICSharpCode.NRefactory.CSharp.AstVerifier/Main.cs
index 43d3531b..54ac57b8 100644
--- a/ICSharpCode.NRefactory.CSharp.AstVerifier/Main.cs
+++ b/ICSharpCode.NRefactory.CSharp.AstVerifier/Main.cs
@@ -59,7 +59,7 @@ namespace ICSharpCode.NRefactory.CSharp.AstVerifier
if (!file.EndsWith (".cs"))
continue;
string text = File.ReadAllText (file);
- var unit = CompilationUnit.Parse (text, file);
+ var unit = SyntaxTree.Parse (text, file);
if (unit == null)
continue;
string generated = unit.GetText ();