mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-16 22:15:01 +03:00
Performance improvements due to not debouncing some function calls.
Adjust JSX and TS syntax definitions.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#include "lspclientplugin.hpp"
|
||||
#include "lspclientserver.hpp"
|
||||
#include "lspclientplugin.hpp"
|
||||
#include "lspclientservermanager.hpp"
|
||||
#include <algorithm>
|
||||
#include <eepp/system/filesystem.hpp>
|
||||
@@ -752,7 +752,7 @@ static LSPMarkupContent parseMarkupContent( const json& v ) {
|
||||
|
||||
static LSPHover parseHover( const json& result ) {
|
||||
LSPHover ret;
|
||||
if ( result.is_null() )
|
||||
if ( result.is_null() || !result.contains( "contains" ) )
|
||||
return ret;
|
||||
|
||||
if ( result.contains( MEMBER_RANGE ) )
|
||||
|
||||
Reference in New Issue
Block a user