(key_code)
| 168 | } |
| 169 | |
| 170 | function key_up(key_code) { |
| 171 | if (!key_status_map[key_code]) |
| 172 | return; |
| 173 | key_status_map[key_code] = false; |
| 174 | _display_key_event(false, key_code); |
| 175 | } |
| 176 | |
| 177 | function press_input(key_code) { |
| 178 | key_down(key_code); |
no outgoing calls
no test coverage detected