(f)
| 156 | ]; |
| 157 | |
| 158 | function TestAllReadonlys(f) { |
| 159 | // Provide various methods to making a property read-only. |
| 160 | for (var i = 0; i < readonlys.length; ++i) { |
| 161 | print(' readonly =', i); |
| 162 | f(readonlys[i]); |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | |
| 167 | // Different use scenarios. |
no test coverage detected