summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/sourcemaps-reload-compressed/v2/script.js
blob: 5c55c1e85989d6d6939cc5ffba7abf3f8dec7369 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Single line comment <<=== this is line 1
console.log("body instruction");
/* Multi 
* line
* comment
*/
function bodyFunction() {
  // Inline comment
  /* Inline
   * multiline comment
   */
  function inlineFunction() {
    console.log("nested instruction");
  }
  const inlineCount = 1;
  let inlineLet = 2;
  var inlineVar = 3;
  console.log("inline instruction");
}
const bodyCount = 1;
let bodyLet = 2;
var bodyVar = 3;