AspectSharp.Lang.Steps.Types.PruneTypesStep.AssertNotInterface C# (CSharp) Method

AssertNotInterface() private method

private AssertNotInterface ( LexicalInfo info, Type type, String message ) : void
info AspectSharp.Lang.AST.LexicalInfo
type System.Type
message String
return void
		private void AssertNotInterface(LexicalInfo info, Type type, String message)
		{
			if (type.IsInterface)
			{
				Context.RaiseErrorEvent(info, message);
			}
		}