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

Side by Side Diff: src/parser.h

Issue 23004022: Rollback of r16286 in trunk branch. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 7 years, 3 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
859 FunctionState* current_function_state_; 858 FunctionState* current_function_state_;
860 Target* target_stack_; // for break, continue statements 859 Target* target_stack_; // for break, continue statements
861 v8::Extension* extension_; 860 v8::Extension* extension_;
862 ScriptDataImpl* pre_parse_data_; 861 ScriptDataImpl* pre_parse_data_;
863 FuncNameInferrer* fni_; 862 FuncNameInferrer* fni_;
864 863
865 Mode mode_; 864 Mode mode_;
866 bool allow_natives_syntax_; 865 bool allow_natives_syntax_;
867 bool allow_lazy_; 866 bool allow_lazy_;
868 bool allow_generators_; 867 bool allow_generators_;
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
905 private: 904 private:
906 static const int kLiteralTypeSlot = 0; 905 static const int kLiteralTypeSlot = 0;
907 static const int kElementsSlot = 1; 906 static const int kElementsSlot = 1;
908 907
909 DISALLOW_IMPLICIT_CONSTRUCTORS(CompileTimeValue); 908 DISALLOW_IMPLICIT_CONSTRUCTORS(CompileTimeValue);
910 }; 909 };
911 910
912 } } // namespace v8::internal 911 } } // namespace v8::internal
913 912
914 #endif // V8_PARSER_H_ 913 #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