| 40 columns | |
| >>> Line comment after dot. |
| variable = . // Comment. |
| whoDoesThis(); |
| <<< 3.10 |
| variable = |
| . // Comment. |
| whoDoesThis(); |
| >>> Block comment after dot. |
| variable = ./* Comment. */whoDoesThis(); |
| <<< 3.10 |
| variable = |
| . /* Comment. */ whoDoesThis(); |
| >>> Line comment after `const`. |
| variable = const // Comment. |
| . whoDoesThis(); |
| <<< 3.10 |
| variable = |
| const // Comment. |
| .whoDoesThis(); |
| >>> Block comment after `const`. |
| variable = const/* Comment. */.whoDoesThis(); |
| <<< 3.10 |
| variable = |
| const /* Comment. */ .whoDoesThis(); |