Cosmos/Users/Orvid/PlugViewer/Errors/NativeImplError.cs

41 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Text;
using PlugViewer.TreeViewNodes;
using System.Reflection;
namespace PlugViewer.Errors
{
internal class NativeImplError : BaseError
{
public override TreeNodeType AppliesTo
{
get { return TreeNodeType.Method; }
}
public override void EvaluateNode(OTreeNode node)
{
MethodInfo m = (MethodInfo)node.Definition;
MethodImplAttributes xImplFlags = m.GetMethodImplementationFlags();
if ((xImplFlags & MethodImplAttributes.Native) != 0)
{
#if DebugErrors
Log.WriteLine(NameBuilder.BuildMethodName(m) + " ~ Method Implementation: Native");
#endif
node.SelectedImageIndex = Constants.ErrorIcon;
node.ImageIndex = Constants.ErrorIcon;
node.Errors.Add(this);
}
}
public override string Name
{
get { return "Native Implementation Error"; }
}
public override string Description
{
get { return "This method is implemented natively, and can't be compiled by IL2CPU."; }
}
}
}