TypeScript/tests/baselines/reference/parserES3Accessors3.errors.txt
Daniel Rosenwasser d33127ad34 Complain when a non-void/any function lacks a return expresson.
In effect this fixes #62.

Also
    - Changes the error message for get accessors lacking return expressions.
    - Actually checks for return expressions instead of return statements for get-accessors.
    - Removes fancy quotes.
    - Corrects errors in the compiler caught by the new check.
    - Simplified `checkAndAggregateReturnTypes` by extracting it out to `visitReturnStatements`.
2014-07-21 16:42:41 -07:00

6 lines
332 B
Plaintext

==== tests/cases/conformance/parser/ecmascript3/Accessors/parserES3Accessors3.ts (2 errors) ====
var v = { get Foo() { } };
~~~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
~~~
!!! A 'get' accessor must return a value or consist of a single 'throw' statement.