summaryrefslogtreecommitdiffstats
path: root/devtools/client/framework/test/code_late_script.js
blob: a9ed62dba9e1e422d804c707a81dc2b1f2c9df69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* Any copyright is dedicated to the Public Domain.
 http://creativecommons.org/publicdomain/zero/1.0/ */

// Original source code for the inline source map test.
// The generated file was made with
//    webpack --devtool source-map code_late_script.js --output code_bundle_late_script.js --mode development

"use strict";

function f() {
  console.log("The first version of the script");
}

f();