~m & in 600
2
3
4
5
7
8
9
10
11
12
13
14
15
16
17
18
927222222
19
20
21
23
24
25
26
export class MyClass {
}
/**
* MyMethod
* * Important information is highlighted
* ! Deprecated method, do not use
* ? Should this method be exposed in the public API?
* TODO: refactor this method so that it conforms to the API
@param myParam The parameter for this method
*/
public MyMethod (myParam: any): void {
let myVar: number = 123;
}
//* This is highlighted
if (myVar > 0) {
throw new TypeError(); //! This is an alert
}
//? This is a query
let x = 1;
//// this.lineOfCode()
commented out
//TODO: Create some test cases