Open hiaux0 opened 2 years ago
Tried to play around, but cannot repro
@customElement({ name: 'custom-element', template })
export class CustomElementCustomElement {
@bindable foo: string = '';
@bindable bar;
hello(arg?: any) {}
qux;
thisisnothing;
okaynext;
useFoo() {
this.foo;
this.qux
this.hello(this.thisisnothing);
this.thisisnothing; this.okaynext;
}
}
Another angle:
174