| 27 | namespace ecode { |
| 28 | |
| 29 | static Action::UniqueID getMouseMoveHash( UICodeEditor* editor ) { |
| 30 | return hashCombine( String::hash( "LSPClientPlugin::onMouseMove-" ), |
| 31 | reinterpret_cast<Action::UniqueID>( editor ) ); |
| 32 | } |
| 33 | |
| 34 | static json getURIAndPositionJSON( UICodeEditor* editor ) { |
| 35 | json data; |
no test coverage detected