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
Post a Comment