| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 <cmath> | 5 #include <cmath> |
| 6 | 6 |
| 7 #include "src/allocation.h" | 7 #include "src/allocation.h" |
| 8 #include "src/base/logging.h" | 8 #include "src/base/logging.h" |
| 9 #include "src/conversions-inl.h" | 9 #include "src/conversions-inl.h" |
| 10 #include "src/conversions.h" | 10 #include "src/conversions.h" |
| 11 #include "src/globals.h" | 11 #include "src/globals.h" |
| 12 #include "src/hashmap.h" | |
| 13 #include "src/list.h" | 12 #include "src/list.h" |
| 14 #include "src/parsing/parser-base.h" | 13 #include "src/parsing/parser-base.h" |
| 15 #include "src/parsing/preparse-data-format.h" | 14 #include "src/parsing/preparse-data-format.h" |
| 16 #include "src/parsing/preparse-data.h" | 15 #include "src/parsing/preparse-data.h" |
| 17 #include "src/parsing/preparser.h" | 16 #include "src/parsing/preparser.h" |
| 18 #include "src/unicode.h" | 17 #include "src/unicode.h" |
| 19 #include "src/utils.h" | 18 #include "src/utils.h" |
| 20 | 19 |
| 21 namespace v8 { | 20 namespace v8 { |
| 22 namespace internal { | 21 namespace internal { |
| (...skipping 1284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1307 if (!*ok) return; | 1306 if (!*ok) return; |
| 1308 | 1307 |
| 1309 body->Add(PreParserStatement::ExpressionStatement(return_value), zone()); | 1308 body->Add(PreParserStatement::ExpressionStatement(return_value), zone()); |
| 1310 } | 1309 } |
| 1311 | 1310 |
| 1312 #undef CHECK_OK | 1311 #undef CHECK_OK |
| 1313 | 1312 |
| 1314 | 1313 |
| 1315 } // namespace internal | 1314 } // namespace internal |
| 1316 } // namespace v8 | 1315 } // namespace v8 |
| OLD | NEW |