| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |