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

12 lines
388 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/getterThatThrowsShouldNotNeedReturn.ts (1 errors) ====
class Greeter {
public get greet(): string {
~~~~~
!!! 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
}
}