node.js - NetBeans moving breakpoints (NodeJS) -


when try debug nodejs program in netbeans, instead shifts breakpoints , stops on different lines. example, tried test program:

/* 1 */ var fs = require("fs"); /* 2 */ var ld = require("lodash"); /* 3 */ var moment = require("moment"); /* 4 */  /* 5 */ var test = ld.after(1, function() { /* 6 */   console.log(moment()); /* 7 */ }); /* 8 */ test(); 

when attempt debug breakpoint on line 6, instead stops on line 8. if attempt place breakpoint after starting program, shifts line 8; attempting re-place breakpoint on 6 causes line 8 have multiple breakpoints. causing , how can stop it?


Comments

Popular posts from this blog

python Tkinter Capturing keyboard events save as one single string -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

javascript - Z-index in d3.js -