()
| 39 | } |
| 40 | |
| 41 | function SearchState() { |
| 42 | this.posFrom = this.posTo = this.query = null; |
| 43 | this.overlay = null; |
| 44 | } |
| 45 | function getSearchState(cm) { |
| 46 | return cm.state.search || (cm.state.search = new SearchState()); |
| 47 | } |
nothing calls this directly
no outgoing calls
no test coverage detected