DEBSOURCES
Skip Quicknav
sources / node-rollup / 3.15.0-1%2Bdeb12u1 / test / form / samples / side-effect-with-plusplus-expression / lib.js
12345678910111213
function first () { for ( let i = -1; ; ++i ) {} second; } function second () {} function third () { ++i; forth; } function forth () {}