TypeScript/tests/baselines/reference/getterThatThrowsShouldNotNeedReturn.errors.txt

15 lines
557 B
Plaintext
Raw Normal View History

tests/cases/compiler/getterThatThrowsShouldNotNeedReturn.ts(2,13): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
2014-07-13 01:04:16 +02:00
==== 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.
2014-07-13 01:04:16 +02:00
throw ''; // should not raise an error
}
public greeting(): string {
throw ''; // should not raise an error
}
}