TypeScript/tests/baselines/reference/parserClassDeclaration17.types

18 lines
634 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 {
2015-04-13 23:01:57 +02:00
>Enumerator : Enumerator, Symbol(Enumerator, Decl(parserClassDeclaration17.ts, 0, 0))
2014-08-15 23:33:16 +02:00
public atEnd(): boolean;
2015-04-13 23:01:57 +02:00
>atEnd : () => boolean, Symbol(atEnd, Decl(parserClassDeclaration17.ts, 0, 26))
2014-08-15 23:33:16 +02:00
public moveNext();
2015-04-13 23:01:57 +02:00
>moveNext : () => any, Symbol(moveNext, Decl(parserClassDeclaration17.ts, 1, 28))
2014-08-15 23:33:16 +02:00
public item(): any;
2015-04-13 23:01:57 +02:00
>item : () => any, Symbol(item, Decl(parserClassDeclaration17.ts, 2, 22))
2014-08-15 23:33:16 +02:00
constructor (o: any);
2015-04-13 23:01:57 +02:00
>o : any, Symbol(o, Decl(parserClassDeclaration17.ts, 4, 17))
2014-08-15 23:33:16 +02:00
}