Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(247)

Side by Side Diff: src/builtins/builtins-iterator.cc

Issue 2348493003: [builtins] move String.prototype[@@iterator] to C++ builtin (Closed)
Patch Set: V5 (try to make gcmole happy) Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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));
14 }
14 15
15 } // namespace internal 16 } // namespace internal
16 } // namespace v8 17 } // namespace v8
17
18 #endif // V8_FILE_UTILS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698