dsherret / ts-type-info

TypeScript AST and code generator [Deprecated]
MIT License
94 stars 8 forks source link

Add tests for abstract accessors #193

Closed dsherret closed 8 years ago

dsherret commented 8 years ago

Just had a thought as I'm programming something else... I don't think I tested for this scenario, but I think it should work:

export abstract class MyClass {
    abstract get myAbstractGetAccessor(): number;
}