Я использую VS C для macOS для написания кода Haxe с использованием библиотек OpenFL и Lime и др. c. Я хочу иметь возможность устанавливать точки останова в коде Haxe, который я пишу, и иметь остановку отладчика в этих точках останова. Я установил отладчик для расширения Chrome, у меня установлены Chrome, а также Safari и Firefox. Когда я запускаю Run - Start Debugging, я получаю следующие сообщения:
В терминале:
Executing task: lime test html5 -nolaunch --connect 6000
Starting local web server: http://localhost:3000
events.js:72
throw er; // Unhandled 'error' event
^ Error: listen EADDRINUSE
at errnoException (net.js:904:11)
at Server._listen2 (net.js:1042:14)
at listen (net.js:1064:10)
at net.js:1146:9
at dns.js:72:18
at process._tickCallback (node.js:419:13)
at Function.Module.runMain (module.js:499:11)
at startup (node.js:119:16)
at node.js:906:3 The terminal process terminated with exit code: 1
В консоли отладки:
Error processing "launch": Error: Can't find Chrome - install it or set the "runtimeExecutable" field in the launch config.
at Object.errP (/Users/Athena/.vscode/extensions/msjsdiag.debugger-for-chrome-4.12.6/node_modules/vscode-chrome-debug-core/out/src/utils.js:262:13)
at ChromeDebugAdapter.<anonymous> (/Users/Athena/.vscode/extensions/msjsdiag.debugger-for-chrome-4.12.6/out/src/chromeDebugAdapter.js:69:57)
at Generator.next (<anonymous>)
at /Users/Athena/.vscode/extensions/msjsdiag.debugger-for-chrome-4.12.6/out/src/chromeDebugAdapter.js:10:71
at new Promise (<anonymous>)
at __awaiter (/Users/Athena/.vscode/extensions/msjsdiag.debugger-for-chrome-4.12.6/out/src/chromeDebugAdapter.js:6:12)
at /Users/Athena/.vscode/extensions/msjsdiag.debugger-for-chrome-4.12.6/out/src/chromeDebugAdapter.js:52:74
Запуск. json, что было дано / создано (я не писал):
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Lime",
"type": "lime",
"request": "launch"
}
]
}
Любая помощь будет принята с благодарностью!