Skip to content

Commit

Permalink
[ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
kripken committed Apr 5, 2019
1 parent 79f77b6 commit 454c763
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -1025,10 +1025,6 @@ var BINARYEN_TRAP_MODE = "allow";
// passes we would normally run.
var BINARYEN_PASSES = "";

// A list of flags to pass to each binaryen invocation (like wasm-opt, etc.),
// which can contain things like features.
var BINARYEN_FEATURES = [];

// Set the maximum size of memory in the wasm module (in bytes). Without this,
// TOTAL_MEMORY is used (as it is used for the initial value), or if memory
// growth is enabled, the default value here (-1) is to have no limit, but you
Expand Down Expand Up @@ -1393,6 +1389,10 @@ var DISABLE_DEPRECATED_FIND_EVENT_TARGET_BEHAVIOR = 0;
// to explicitly choose to disable HTML minification altogether.
var MINIFY_HTML = 1;

// A list of feature flags to pass to each binaryen invocation (like wasm-opt, etc.). This
// is received from wasm-emscripten-finalize, which reads it from the features section.
var BINARYEN_FEATURES = [];

// Legacy settings that have been removed, and the values they are now fixed to.
// These can no longer be changed:
// [OPTION_NAME, POSSIBLE_VALUES, ERROR_EXPLANATION], where POSSIBLE_VALUES is
Expand Down

0 comments on commit 454c763

Please sign in to comment.