Reviewers: Vitaly, Mads Ager, Description: Initialize all VariableProxy fields in its constructor
Please review this at http://codereview.chromium.org/3330002/show SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/ast.cc Index: src/ast.cc =================================================================== --- src/ast.cc (revision 5389) +++ src/ast.cc (working copy) @@ -84,7 +84,10 @@ VariableProxy::VariableProxy(bool is_this) - : is_this_(is_this) { + : var_(NULL), + is_this_(is_this), + inside_with_(false), + is_trivial_(false) { } -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
