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

12 lines
795 B
Plaintext
Raw Normal View History

tests/cases/conformance/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration9.ts(2,12): error TS1029: 'public' modifier must precede 'static' modifier.
tests/cases/conformance/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration9.ts(2,23): error TS2378: A 'get' accessor must return a value or consist of a single 'throw' statement.
2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration9.ts (2 errors) ====
class C {
static public get Foo() { }
~~~~~~
!!! error TS1029: 'public' modifier must precede 'static' modifier.
2014-07-13 01:04:16 +02:00
~~~
!!! error TS2378: A 'get' accessor must return a value or consist of a single 'throw' statement.
2014-07-13 01:04:16 +02:00
}