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

22 lines
783 B
Text
Raw Normal View History

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.
2014-07-13 01:04:16 +02:00
==== 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.
2014-07-13 01:04:16 +02:00
return (n)=>n
},
set foo(x) {}
~~~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
2014-07-13 01:04:16 +02:00
}