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

15 lines
652 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/expressions/objectLiterals/objectLiteralErrorsES3.ts (4 errors) ====
var e1 = { get a() { return 4; } };
~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
var e2 = { set a(n) { } };
~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
var e3 = { get a() { return ''; }, set a(n) { } };
~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
~
!!! Accessors are only available when targeting ECMAScript 5 and higher.