manolo / gwt-api-generator

Generator for creating GWT JSInterop clients from Polymer Web Components
Apache License 2.0
50 stars 24 forks source link

Overloaded properties are not parsed correctly #44

Closed manolo closed 8 years ago

manolo commented 9 years ago

PaperSlider has setMin(double), setMin(String), setMax(double), setMax(String) but only setValue(String)

The cause is that paper-slider extends two behaviors and each one has one signature, we should produce signature for both: https://elements.polymer-project.org/elements/iron-form-element-behavior?active=Polymer.IronFormElementBehavior and https://elements.polymer-project.org/elements/iron-range-behavior?active=Polymer.IronRangeBehavior

manolo commented 8 years ago

Fixed