TypeScript/tests/baselines/reference/commentOnClassMethod1.types

12 lines
215 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/commentOnClassMethod1.ts ===
class WebControls {
>WebControls : WebControls
/**
* Render a control
*/
createControl(): any {
>createControl : () => any
}
}