objective-c-parser icon indicating copy to clipboard operation
objective-c-parser copied to clipboard

Get the JSON representation of an Objective-C header file

Results 7 objective-c-parser issues
Sort by recently updated
recently updated
newest added

This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. This repository currently has no open or pending branches. ## Detected dependencies npm package.json...

I found this package on NPM originally, and the example in that README doesn't seem to work. If you go here: https://www.npmjs.com/package/objective-c-parser, the README clearly doesn't match the README on...

``` #import @protocol Ponies, Foo; @interface BasicName : NSObject //decode error - (NSString *)basicMethodOne:(NSInteger)argOne AndArgTwo:(NSString *)argTwo; //decode error - (int *)demo1:(NSInteger)argOne AndArgTwo:(NSString *)argTwo; - (NSInteger)basicMethodOne; @end ```

bug
type:parser

Example for this is: ```objective-c + (id)detoxMatcherForBoth:(id)firstMatcher andAncestorMatcher:(id)ancestorMatcher; ```

bug
type:parser

In Objective-C `- (id) init` indicates a constructor. We should have a constructor flag in the output. We could also think about detecting it by type (`id`) and name (`init*`)...

enhancement
type:parser

With paragraph that we would like to add new projects 👍

enhancement
type:docs