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

16 lines
594 B
Plaintext

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.
==== tests/cases/compiler/returnValueInSetter.ts (2 errors) ====
class f {
set x(value) {
~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
return null; // Should be an error
~~~~
!!! error TS2408: Setters cannot return a value.
}
}