@@ -23,7 +23,7 @@ const listenedKeys: ListenedKey[] = [
2323
2424@customElement ( 'vscode-list' )
2525export class VscodeList extends VscElement {
26- static styles = styles ;
26+ static override styles = styles ;
2727
2828 @property ( { type : Boolean , reflect : true } )
2929 arrows = false ;
@@ -43,7 +43,7 @@ export class VscodeList extends VscElement {
4343
4444 /** @internal */
4545 @property ( { type : String , reflect : true } )
46- role = 'tree' ;
46+ override role = 'tree' ;
4747
4848 @property ( { type : Number , reflect : true } )
4949 numChildren = 0 ;
@@ -167,7 +167,7 @@ export class VscodeList extends VscElement {
167167 }
168168 } ;
169169
170- protected willUpdate ( changedProperties : PropertyValues < this> ) : void {
170+ protected override willUpdate ( changedProperties : PropertyValues < this> ) : void {
171171 const { arrows, indent} = this ;
172172
173173 if ( changedProperties . has ( 'arrows' ) ) {
@@ -183,20 +183,20 @@ export class VscodeList extends VscElement {
183183 this . tabIndex = this . _originalTabIndex ;
184184 }
185185
186- connectedCallback ( ) : void {
186+ override connectedCallback ( ) : void {
187187 super . connectedCallback ( ) ;
188188
189189 this . _originalTabIndex = this . tabIndex ;
190190 this . addEventListener ( 'keydown' , this . _handleComponentKeyDown ) ;
191191 }
192192
193- disconnectedCallback ( ) : void {
193+ override disconnectedCallback ( ) : void {
194194 super . disconnectedCallback ( ) ;
195195
196196 this . removeEventListener ( 'keydown' , this . _handleComponentKeyDown ) ;
197197 }
198198
199- render ( ) : TemplateResult {
199+ override render ( ) : TemplateResult {
200200 return html `< div >
201201 < slot @slotchange =${ this . _handleSlotChange } > </ slot >
202202 </ div > ` ;
0 commit comments