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

16 lines
594 B
Plaintext
Raw Normal View History

tests/cases/compiler/returnValueInSetter.ts(2,9): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
tests/cases/compiler/returnValueInSetter.ts(3,16): error TS2408: Setters cannot return a value.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/returnValueInSetter.ts (2 errors) ====
class f {
set x(value) {
~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
2014-07-13 01:04:16 +02:00
return null; // Should be an error
~~~~
!!! error TS2408: Setters cannot return a value.
2014-07-13 01:04:16 +02:00
}
}