[ 
https://issues.apache.org/jira/browse/THRIFT-1840?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14099481#comment-14099481
 ] 

Chris Thompson commented on THRIFT-1840:
----------------------------------------

The generated JavaScript code doesn't lend itself to namespacing.  The code is 
assigning values to undeclared variables. No function wrapping or other tweak 
to the generated code can fix the global leakage.  The generator needs to be 
reworked to produce valid strict code.

> Thrift Generated Code Causes Global Variable Leaks
> --------------------------------------------------
>
>                 Key: THRIFT-1840
>                 URL: https://issues.apache.org/jira/browse/THRIFT-1840
>             Project: Thrift
>          Issue Type: Bug
>          Components: Node.js - Compiler
>    Affects Versions: 0.9
>            Reporter: Russell Bradberry
>              Labels: javascript, node
>         Attachments: 0001-THRIFT-1840-fix-for-global-variable-leak.patch, 
> fix_globals.js
>
>
> When compiling for NodeJS, the compiler creates globally scoped variables 
> which is considered a bad practice as it can create unintended consequences. 
> It also causes many testing frameworks to fail.
> the output looks something like this:
> {code}
> User = module.exports.User = function(args) {
> {code}
> when it should be
> {code}
> var User = module.exports.User = function(args) {
> {code}



--
This message was sent by Atlassian JIRA
(v6.2#6252)

Reply via email to