TypeScript/tests/baselines/reference/out-flag.types

23 lines
370 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/out-flag.ts ===
//// @out: bin\
// my class comments
class MyClass
>MyClass : MyClass
2014-08-15 23:33:16 +02:00
{
// my function comments
public Count(): number
>Count : () => number
2014-08-15 23:33:16 +02:00
{
return 42;
2015-04-13 21:36:11 +02:00
>42 : number
2014-08-15 23:33:16 +02:00
}
public SetCount(value: number)
>SetCount : (value: number) => void
>value : number
2014-08-15 23:33:16 +02:00
{
//
}
}