评估Eclipse CDT中突出显示的表达式

时间:2016-08-17 09:58:10

标签: eclipse eclipse-cdt

我可以添加一个监视表达式,我可以在gdb控制台面板中键入 // Set the headers var headers = { 'User-Agent': 'Domogeek/4', 'Content-Type': 'application/x-www-form-urlencoded' }; // Configure the request var options = { url: "http://fe80::57ee::c539:6741%rmnet0:9090/sendsms", // url: "http://92.90.21.38:9090/sendsms", method: 'GET', headers: headers, qs: {'phone': phone, 'text': message} }; console.log('GET request'); // Start the request request(options, function (error, response, body) { if (!error && response.statusCode == 200) { console.info('SMS sended to: %s => %s', phone, message); } else { console.error('SMS error : %s => %s', error, message); } }); ,但我想要的是在调试暂停时突出显示一个函数调用,并让弹出面板显示结果。这可能吗?

0 个答案:

没有答案