TypeScript/tests/baselines/reference/parserES3Accessors1.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

8 lines
333 B
Plaintext

==== tests/cases/conformance/parser/ecmascript3/Accessors/parserES3Accessors1.ts (2 errors) ====
class C {
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.
}