blob: 0e1be97a6a3d509f9f26652dc453c33ce535672f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* 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_reload_2.js code_bundle_reload_2.js
// perl -pi -e 's/code_bundle_reload_2.js.map/sjs_code_bundle_reload_map.sjs/' \
// code_bundle_reload_2.js
"use strict";
function f() {
console.log("The second version of the script");
}
f();
|