1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
=== tests/cases/compiler/propertyOrdering.ts ===
class Foo {
>Foo : Foo
constructor(store: string) { }
>store : string
public foo() {
>foo : () => any
return this._store.length; // shouldn't be an error
>this._store.length : any
>this._store : any
>this : this
>_store : any
>length : any
}
public _store = store; // no repro if this is first line in class body
>_store : any
>store : any
public bar() { return this.store; } // should be an error
>bar : () => any
>this.store : any
>this : this
>store : any
}
class Bar {
>Bar : Bar
public foo() {
>foo : () => any
return this._store.length; // shouldn't be an error
>this._store.length : any
>this._store : any
>this : this
>_store : any
>length : any
}
constructor(store: string) {
>store : string
this._store = store;
>this._store = store : string
>this._store : any
>this : this
>_store : any
>store : string
}
}
|