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

22 lines
783 B
Plaintext

tests/cases/compiler/contextualTypingOfAccessors.ts(8,8): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
tests/cases/compiler/contextualTypingOfAccessors.ts(11,8): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
==== tests/cases/compiler/contextualTypingOfAccessors.ts (2 errors) ====
// not contextually typing accessors
var x: {
foo: (x: number) => number;
}
x = {
get foo() {
~~~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
return (n)=>n
},
set foo(x) {}
~~~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
}