TypeScript/tests/baselines/reference/getterThatThrowsShouldNotNeedReturn.errors.txt
2014-09-12 13:35:07 -07:00

15 lines
557 B
Plaintext

tests/cases/compiler/getterThatThrowsShouldNotNeedReturn.ts(2,13): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
==== tests/cases/compiler/getterThatThrowsShouldNotNeedReturn.ts (1 errors) ====
class Greeter {
public get greet(): string {
~~~~~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
throw ''; // should not raise an error
}
public greeting(): string {
throw ''; // should not raise an error
}
}