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

11 lines
347 B
Plaintext

==== tests/cases/compiler/getterMissingReturnError.ts (2 errors) ====
class test {
public get p2(){
~~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
~~
!!! A 'get' accessor must return a value or consist of a single 'throw' statement.
}
}