OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/parsing/parser.h" | 5 #include "src/parsing/parser.h" |
6 | 6 |
7 #include <memory> | 7 #include <memory> |
8 | 8 |
9 #include "src/api.h" | 9 #include "src/api.h" |
10 #include "src/ast/ast-expression-rewriter.h" | 10 #include "src/ast/ast-expression-rewriter.h" |
(...skipping 791 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
802 | 802 |
803 if (ok) { | 803 if (ok) { |
804 RewriteDestructuringAssignments(); | 804 RewriteDestructuringAssignments(); |
805 int parameter_count = parsing_module_ ? 1 : 0; | 805 int parameter_count = parsing_module_ ? 1 : 0; |
806 result = factory()->NewScriptOrEvalFunctionLiteral( | 806 result = factory()->NewScriptOrEvalFunctionLiteral( |
807 scope, body, function_state.materialized_literal_count(), | 807 scope, body, function_state.materialized_literal_count(), |
808 function_state.expected_property_count(), parameter_count); | 808 function_state.expected_property_count(), parameter_count); |
809 } | 809 } |
810 } | 810 } |
811 | 811 |
| 812 info->set_max_function_literal_id(GetLastFunctionLiteralId()); |
| 813 |
812 // Make sure the target stack is empty. | 814 // Make sure the target stack is empty. |
813 DCHECK(target_stack_ == NULL); | 815 DCHECK(target_stack_ == NULL); |
814 | 816 |
815 return result; | 817 return result; |
816 } | 818 } |
817 | 819 |
818 FunctionLiteral* Parser::ParseFunction(Isolate* isolate, ParseInfo* info) { | 820 FunctionLiteral* Parser::ParseFunction(Isolate* isolate, ParseInfo* info) { |
819 // It's OK to use the Isolate & counters here, since this function is only | 821 // It's OK to use the Isolate & counters here, since this function is only |
820 // called in the main thread. | 822 // called in the main thread. |
821 DCHECK(parsing_on_main_thread_); | 823 DCHECK(parsing_on_main_thread_); |
(...skipping 4621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5443 | 5445 |
5444 return final_loop; | 5446 return final_loop; |
5445 } | 5447 } |
5446 | 5448 |
5447 #undef CHECK_OK | 5449 #undef CHECK_OK |
5448 #undef CHECK_OK_VOID | 5450 #undef CHECK_OK_VOID |
5449 #undef CHECK_FAILED | 5451 #undef CHECK_FAILED |
5450 | 5452 |
5451 } // namespace internal | 5453 } // namespace internal |
5452 } // namespace v8 | 5454 } // namespace v8 |
OLD | NEW |