ios-jsc icon indicating copy to clipboard operation
ios-jsc copied to clipboard

Unique Objective-C Declarations in Metadata

Open jasssonpet opened this issue 10 years ago • 0 comments

If we generate metadata for the following Objective-C header:

const int x;
const int x;

Expected:

declare var x: number;

Actual:

declare var x: number;
declare var xVar: number;

We should ignore all redeclared declarations, like the Clang compiler does.

jasssonpet avatar Nov 23 '15 10:11 jasssonpet