aboutsummaryrefslogtreecommitdiff
path: root/src/settings.js
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-04-29 12:12:32 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-04-29 12:12:32 -0700
commit3a108dc9cdbe270b23f1ce5ef32ce56ae864ce45 (patch)
tree9e4c6006e37fd2d5ac2a5f28e0a223f73c63af3f /src/settings.js
parented34c86a0bf695726985d4d6dff9573fdba0eee3 (diff)
ERROR_ON_UNRESOLVED_SYMBOLS option
Diffstat (limited to 'src/settings.js')
-rw-r--r--src/settings.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/settings.js b/src/settings.js
index c878be92..48b0347e 100644
--- a/src/settings.js
+++ b/src/settings.js
@@ -317,6 +317,9 @@ var WARN_ON_UNDEFINED_SYMBOLS = 0; // If set to 1, we will warn on any undefined
// the existing buildsystem), and (2) functions might be
// implemented later on, say in --pre-js
+var ERROR_ON_UNDEFINED_SYMBOLS = 0; // If set to 1, we will give a compile-time error on any
+ // undefined symbols (see WARN_ON_UNDEFINED_SYMBOLS).
+
var SMALL_XHR_CHUNKS = 0; // Use small chunk size for binary synchronous XHR's in Web Workers.
// Used for testing.
// See test_chunked_synchronous_xhr in runner.py and library.js.