OLD | NEW |
(Empty) | |
| 1 // Copyright 2017 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "src/builtins/setup-builtins.h" |
| 6 |
| 7 #include "src/base/logging.h" |
| 8 #include "src/isolate.h" |
| 9 |
| 10 namespace v8 { |
| 11 namespace internal { |
| 12 |
| 13 void SetupBuiltinsDelegate::SetupBuiltins(Isolate* isolate, |
| 14 bool create_heap_objects) { |
| 15 DCHECK(!create_heap_objects); |
| 16 // No actual work to be done; builtins will be deserialized from the snapshot. |
| 17 isolate->builtins()->MarkInitialized(); |
| 18 } |
| 19 |
| 20 } // namespace internal |
| 21 } // namespace v8 |
OLD | NEW |