File tree 3 files changed +9
-0
lines changed
3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -1095,6 +1095,7 @@ def check(input_file):
1095
1095
1096
1096
if shared .Settings .STRICT :
1097
1097
shared .Settings .DISABLE_DEPRECATED_FIND_EVENT_TARGET_BEHAVIOR = 1
1098
+ shared .Settings .STRICT_JS = 1
1098
1099
1099
1100
if AUTODEBUG :
1100
1101
shared .Settings .AUTODEBUG = 1
Original file line number Diff line number Diff line change @@ -813,8 +813,12 @@ var LINKABLE = 0;
813
813
// * DISABLE_DEPRECATED_FIND_EVENT_TARGET_BEHAVIOR is enabled
814
814
// * The C define EMSCRIPTEN is not defined (__EMSCRIPTEN__ always is, and
815
815
// is the correct thing to use).
816
+ // * STRICT_JS is enabled
816
817
var STRICT = 0 ;
817
818
819
+ // Add "use strict;" to generated JS
820
+ var STRICT_JS = 0 ;
821
+
818
822
// If set to 1, we will warn on any undefined symbols that are not resolved by
819
823
// the library_*.js files. Note that it is common in large projects to not
820
824
// implement everything, when you know what is not going to actually be called
Original file line number Diff line number Diff line change 3
3
// University of Illinois/NCSA Open Source License. Both these licenses can be
4
4
// found in the LICENSE file.
5
5
6
+ #if STRICT_JS
7
+ "use strict;"
8
+
9
+ #endif
6
10
#if SIDE_MODULE == 0
7
11
// The Module object: Our interface to the outside world. We import
8
12
// and export values on it. There are various ways Module can be used:
You can’t perform that action at this time.
0 commit comments