| 1084 | const directionNames = ['up', 'down', 'left', 'right'] |
| 1085 | |
| 1086 | class Direction { |
| 1087 | constructor (name) { |
| 1088 | this.name = name // 'up', 'down', 'left', 'right' |
| 1089 | if (this.name === 'up') { |
nothing calls this directly
no outgoing calls
no test coverage detected