From 1dbb01a159d646a59f4e79277edd864a18570c0e Mon Sep 17 00:00:00 2001 From: Timotej Lazar Date: Fri, 28 Aug 2015 17:45:35 +0200 Subject: Add initial support for hints --- js/codeq/comms.js | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'js/codeq/comms.js') diff --git a/js/codeq/comms.js b/js/codeq/comms.js index c2ad715..8b89cde 100644 --- a/js/codeq/comms.js +++ b/js/codeq/comms.js @@ -121,6 +121,11 @@ return send('query', query); }, + sendHint: function commsSendHint (json) { + json['sid'] = codeq.sid; + return send('hint', json); + }, + sendTest: function commsSendTest (json) { json['sid'] = codeq.sid; return send('test', json); -- cgit v1.2.1