OLD | NEW |
---|---|
1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef V8_FILE_UTILS_H_ | 5 #include "src/builtins/builtins.h" |
6 #define V8_FILE_UTILS_H_ | 6 #include "src/builtins/builtins-utils.h" |
7 | 7 |
8 namespace v8 { | 8 namespace v8 { |
9 namespace internal { | 9 namespace internal { |
10 | 10 |
11 // Helper functions to manipulate file paths. | 11 void Builtins::Generate_IteratorPrototypeIterator( |
12 | 12 CodeStubAssembler* assembler) { |
13 char* RelativePath(char** buffer, const char* exec_path, const char* name); | 13 assembler->Return(assembler->Parameter(0)); |
caitp
2016/09/15 19:02:39
this is just here so that IteratorPrototype can be
Benedikt Meurer
2016/09/16 03:16:37
Acknowledged.
| |
14 } | |
14 | 15 |
15 } // namespace internal | 16 } // namespace internal |
16 } // namespace v8 | 17 } // namespace v8 |
17 | |
18 #endif // V8_FILE_UTILS_H_ | |
OLD | NEW |