Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1153)

Side by Side Diff: src/parser.h

Issue 22901010: Fix scoping of function declarations in eval inside non-trivial local scope (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comments Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/parser.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 837 matching lines...) Expand 10 before | Expand all | Expand 10 after
848 return current_function_state_->factory(); 848 return current_function_state_->factory();
849 } 849 }
850 850
851 Isolate* isolate_; 851 Isolate* isolate_;
852 ZoneList<Handle<String> > symbol_cache_; 852 ZoneList<Handle<String> > symbol_cache_;
853 853
854 Handle<Script> script_; 854 Handle<Script> script_;
855 Scanner scanner_; 855 Scanner scanner_;
856 preparser::PreParser* reusable_preparser_; 856 preparser::PreParser* reusable_preparser_;
857 Scope* top_scope_; 857 Scope* top_scope_;
858 Scope* original_scope_; // for ES5 function declarations in sloppy eval
858 FunctionState* current_function_state_; 859 FunctionState* current_function_state_;
859 Target* target_stack_; // for break, continue statements 860 Target* target_stack_; // for break, continue statements
860 v8::Extension* extension_; 861 v8::Extension* extension_;
861 ScriptDataImpl* pre_parse_data_; 862 ScriptDataImpl* pre_parse_data_;
862 FuncNameInferrer* fni_; 863 FuncNameInferrer* fni_;
863 864
864 Mode mode_; 865 Mode mode_;
865 bool allow_natives_syntax_; 866 bool allow_natives_syntax_;
866 bool allow_lazy_; 867 bool allow_lazy_;
867 bool allow_generators_; 868 bool allow_generators_;
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
904 private: 905 private:
905 static const int kLiteralTypeSlot = 0; 906 static const int kLiteralTypeSlot = 0;
906 static const int kElementsSlot = 1; 907 static const int kElementsSlot = 1;
907 908
908 DISALLOW_IMPLICIT_CONSTRUCTORS(CompileTimeValue); 909 DISALLOW_IMPLICIT_CONSTRUCTORS(CompileTimeValue);
909 }; 910 };
910 911
911 } } // namespace v8::internal 912 } } // namespace v8::internal
912 913
913 #endif // V8_PARSER_H_ 914 #endif // V8_PARSER_H_
OLDNEW
« no previous file with comments | « no previous file | src/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698