Skip to content
This repository has been archived by the owner on Mar 4, 2021. It is now read-only.

Fix generator so that OverrideAttribute is a known attribute for methods #52

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/generator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1663,6 +1663,8 @@ public void Go ()
continue;
} else if (attr is SealedAttribute || attr is EventArgsAttribute || attr is DelegateNameAttribute || attr is EventNameAttribute || attr is ObsoleteAttribute || attr is AlphaAttribute || attr is NewAttribute || attr is SinceAttribute || attr is PostGetAttribute || attr is NullAllowedAttribute || attr is CheckDisposedAttribute || attr is SnippetAttribute || attr is LionAttribute || attr is MountainLionAttribute || attr is AppearanceAttribute || attr is ThreadSafeAttribute || attr is AutoreleaseAttribute || attr is EditorBrowsableAttribute || attr is AdviceAttribute)
continue;
else if (attr is OverrideAttribute)
continue;
else if (attr is MarshalNativeExceptionsAttribute)
continue;
else if (attr is WrapAttribute)
Expand Down