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>2014-03-05 20:06:17 +0400
committerDaniel Grunwald <daniel@danielgrunwald.de>2014-03-05 20:06:17 +0400
commita7ac2d69a7132394ed6b560576d14ff9b7879d3f (patch)
treee55cc920186c6c783e65ee2531b3aea122b8b3e3 /ICSharpCode.NRefactory.Cecil
parent1663c9a6210589c1b1eb8d5d5566310f972cd53d (diff)
Merge NRefactory changes from SharpDevelop repository.
* ITypeDefinition.IsPartial * Script.AddTo() overload for adding a member to a type definition
Diffstat (limited to 'ICSharpCode.NRefactory.Cecil')
-rw-r--r--ICSharpCode.NRefactory.Cecil/CecilLoader.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/ICSharpCode.NRefactory.Cecil/CecilLoader.cs b/ICSharpCode.NRefactory.Cecil/CecilLoader.cs
index 68e2b8e0..92f642c2 100644
--- a/ICSharpCode.NRefactory.Cecil/CecilLoader.cs
+++ b/ICSharpCode.NRefactory.Cecil/CecilLoader.cs
@@ -1272,6 +1272,10 @@ namespace ICSharpCode.NRefactory.TypeSystem
// FlagHasNoExtensionMethods is unused in LazyCecilTypeDefinition
}
+ public bool IsPartial {
+ get { return false; }
+ }
+
public override object Clone()
{
throw new NotSupportedException();