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

22 lines
849 B
Plaintext
Raw Normal View History

tests/cases/compiler/setterWithReturn.ts(2,16): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
tests/cases/compiler/setterWithReturn.ts(4,20): error TS2408: Setters cannot return a value.
tests/cases/compiler/setterWithReturn.ts(7,20): error TS2408: Setters cannot return a value.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/setterWithReturn.ts (3 errors) ====
class C234 {
public set p1(arg1) {
~~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
2014-07-13 01:04:16 +02:00
if (true) {
return arg1;
~~~~
!!! error TS2408: Setters cannot return a value.
2014-07-13 01:04:16 +02:00
}
else {
return 0;
~
!!! error TS2408: Setters cannot return a value.
2014-07-13 01:04:16 +02:00
}
}
}