TypeScript/tests/cases/compiler/out-flag.ts

21 lines
325 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
// @target: ES5
// @sourcemap: true
// @declaration: true
// @module: commonjs
//// @out: bin\
// @removeComments: false
2014-07-13 01:04:16 +02:00
// my class comments
class MyClass
{
// my function comments
public Count(): number
{
return 42;
}
public SetCount(value: number)
{
//
}
}