DEBSOURCES
Skip Quicknav
sources / node-typescript / 2.1.5-1~bpo8%2B1 / tests / cases / compiler / privateVisibles.ts
12345678
class Foo { private pvar = 0; constructor() { var n = this.pvar; } public meth() { var q = this.pvar;} }