polymer-analyzer
Version:
Static analysis for Web Components
21 lines (16 loc) • 303 B
JavaScript
class Base {
/** This is a base method. */
baseMethod() {
}
/** Will be overriden by Subclass. */
overriddenMethod() {
}
}
class Subclass extends Base {
/** Overrides the method on Base. */
overriddenMethod() {
}
/** This method only exists on Subclass. */
subMethod() {
}
}