aboutsummaryrefslogtreecommitdiff
path: root/src/compiler.js
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-01-17 18:38:25 -0800
committerAlon Zakai <alonzakai@gmail.com>2013-01-17 18:38:25 -0800
commit2913e6efd9acd4180847ed1f3ed84d450e8719de (patch)
tree9cbd74e4331eb5ca1c7787ecd31da247219ecdbb /src/compiler.js
parent33b7ca2795983813467d796edb8dd9d380a288bd (diff)
parent4899a836579f064a0aa0df3b56fa15b3d4e04012 (diff)
Merge pull request #778 from caiiiycuk/exception_catching_in_scope
Implement exceptions in scopes
Diffstat (limited to 'src/compiler.js')
-rw-r--r--src/compiler.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler.js b/src/compiler.js
index 118ca83a..25c306cf 100644
--- a/src/compiler.js
+++ b/src/compiler.js
@@ -168,6 +168,7 @@ if (PGO) { // by default, correct everything during PGO
EXPORTED_FUNCTIONS = set(EXPORTED_FUNCTIONS);
EXPORTED_GLOBALS = set(EXPORTED_GLOBALS);
+EXCEPTION_CATCHING_WHITELIST = set(EXCEPTION_CATCHING_WHITELIST);
RUNTIME_DEBUG = LIBRARY_DEBUG || GL_DEBUG;