(x: int, y: int, isDark: boolean)
| 338 | // Sets the color of a module and marks it as a function module. |
| 339 | // Only used by the constructor. Coordinates must be in bounds. |
| 340 | private setFunctionModule(x: int, y: int, isDark: boolean): void { |
| 341 | this.modules[y][x] = isDark; |
| 342 | this.isFunction[y][x] = true; |
| 343 | } |
| 344 | |
| 345 | |
| 346 | /*-- Private helper methods for constructor: Codewords and masking --*/ |
no outgoing calls
no test coverage detected