diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-02-18 17:23:00 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-02-18 17:23:00 -0800 |
commit | 3f93d8b1ca39f520da5b89c23e94f0b061838b15 (patch) | |
tree | 86d9e6cc6c856bfa659716e066ac9d920abb35e4 /src/jsifier.js | |
parent | 52897895fb947665984a784555405ee0a806af18 (diff) |
do not include __inline with full library
Diffstat (limited to 'src/jsifier.js')
-rw-r--r-- | src/jsifier.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jsifier.js b/src/jsifier.js index 7caeea61..567520db 100644 --- a/src/jsifier.js +++ b/src/jsifier.js @@ -66,7 +66,7 @@ function JSify(data, functionsOnly, givenFunctions) { assert(!BUILD_AS_SHARED_LIB, 'Cannot have both INCLUDE_FULL_LIBRARY and BUILD_AS_SHARED_LIB set.') libFuncsToInclude = []; for (var key in LibraryManager.library) { - if (!key.match(/__(deps|postset)$/)) { + if (!key.match(/__(deps|postset|inline)$/)) { libFuncsToInclude.push(key); } } |