(e)
| 3042 | CodeMirror.e_stopPropagation = e_stopPropagation; |
| 3043 | |
| 3044 | function e_target(e) {return e.target || e.srcElement;} |
| 3045 | function e_button(e) { |
| 3046 | if (e.which) return e.which; |
| 3047 | else if (e.button & 1) return 1; |
no outgoing calls
no test coverage detected