TypeScript/tests/baselines/reference/parserClassDeclaration17.types

18 lines
347 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration17.ts ===
declare class Enumerator {
>Enumerator : Enumerator
2014-08-15 23:33:16 +02:00
public atEnd(): boolean;
>atEnd : () => boolean
2014-08-15 23:33:16 +02:00
public moveNext();
>moveNext : () => any
2014-08-15 23:33:16 +02:00
public item(): any;
>item : () => any
2014-08-15 23:33:16 +02:00
constructor (o: any);
>o : any
2014-08-15 23:33:16 +02:00
}