Skip to content

Commit 2fe944f

Browse files
authored
Add 'use strict' to generated JS when -s STRICT is used (#9265)
See #8317
1 parent 43b2d41 commit 2fe944f

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

emcc.py

+1
Original file line numberDiff line numberDiff line change
@@ -1095,6 +1095,7 @@ def check(input_file):
10951095

10961096
if shared.Settings.STRICT:
10971097
shared.Settings.DISABLE_DEPRECATED_FIND_EVENT_TARGET_BEHAVIOR = 1
1098+
shared.Settings.STRICT_JS = 1
10981099

10991100
if AUTODEBUG:
11001101
shared.Settings.AUTODEBUG = 1

src/settings.js

+4
Original file line numberDiff line numberDiff line change
@@ -813,8 +813,12 @@ var LINKABLE = 0;
813813
// * DISABLE_DEPRECATED_FIND_EVENT_TARGET_BEHAVIOR is enabled
814814
// * The C define EMSCRIPTEN is not defined (__EMSCRIPTEN__ always is, and
815815
// is the correct thing to use).
816+
// * STRICT_JS is enabled
816817
var STRICT = 0;
817818

819+
// Add "use strict;" to generated JS
820+
var STRICT_JS = 0;
821+
818822
// If set to 1, we will warn on any undefined symbols that are not resolved by
819823
// the library_*.js files. Note that it is common in large projects to not
820824
// implement everything, when you know what is not going to actually be called

src/shell.js

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
// University of Illinois/NCSA Open Source License. Both these licenses can be
44
// found in the LICENSE file.
55

6+
#if STRICT_JS
7+
"use strict;"
8+
9+
#endif
610
#if SIDE_MODULE == 0
711
// The Module object: Our interface to the outside world. We import
812
// and export values on it. There are various ways Module can be used:

0 commit comments

Comments
 (0)