Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parse extended method types for protocols #30

Merged
merged 2 commits into from Sep 19, 2013

Conversation

0xced
Copy link
Contributor

@0xced 0xced commented Feb 19, 2013

Before:

@protocol BookmarkSource
- (id)bookmarkSourceMenuTitle;
- (void)removeBookmarkSourceMenu:(id)arg1;
- (struct TabPlacementHint)tabPlacementHintForMenu:(id)arg1;
- (void)addBookmarkSourceMenu:(id)arg1 withTabPlacementHint:(const struct TabPlacementHint *)arg2;
- (BOOL)isFilteredFromOtherSources;
- (id)imageForContentItem:(id)arg1;
- (id)titleStringForContentItem:(id)arg1;
- (id)addressStringForContentItem:(id)arg1;
- (id)bookmarkSourceImage;
- (id)bookmarksFromContentItems:(id)arg1;
- (id)bookmarkFromContentItem:(id)arg1;
@end

After:

@protocol BookmarkSource
- (NSString *)bookmarkSourceMenuTitle;
- (void)removeBookmarkSourceMenu:(NSMenu *)arg1;
- (struct TabPlacementHint)tabPlacementHintForMenu:(NSMenu *)arg1;
- (void)addBookmarkSourceMenu:(NSMenu *)arg1 withTabPlacementHint:(const struct TabPlacementHint *)arg2;
- (BOOL)isFilteredFromOtherSources;
- (NSImage *)imageForContentItem:(id)arg1;
- (NSString *)titleStringForContentItem:(id)arg1;
- (NSString *)addressStringForContentItem:(id)arg1;
- (NSImage *)bookmarkSourceImage;
- (NSArray *)bookmarksFromContentItems:(NSArray *)arg1;
- (WebBookmark *)bookmarkFromContentItem:(id)arg1;
@end

nygard added a commit that referenced this pull request Sep 19, 2013
Parse extended method types for protocols
@nygard nygard merged commit c224e2f into nygard:master Sep 19, 2013
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants