1
使用Geany IDE時,是否有可能在每個指令正在運行時遍歷函數中的每條指令?我知道許多IDE(包括Eclipse和Visual Studio)都具有此功能,但我還沒有在Geany中找到它。單步執行Geany中的每條指令
function doStuff(){
for(var i = 0; i < 10; i++){
console.log("Is it possible to step through this JavaScript function in Geany?");
}
}
doStuff();
您正在使用哪種操作系統? Linux,Windows或MacOS? –
@moebius_eye我現在在使用Windows。 –
你應該檢查gdb插件是否可以在windows上運行。但我會認真的懷疑它。 –