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

Side by Side Diff: src/factory.h

Issue 2578053003: [modules] Remove @@iterator on namespace objects. (Closed)
Patch Set: Skip out-of-date tests262 tests. Created 4 years 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
« no previous file with comments | « src/contexts.h ('k') | src/factory.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_FACTORY_H_ 5 #ifndef V8_FACTORY_H_
6 #define V8_FACTORY_H_ 6 #define V8_FACTORY_H_
7 7
8 #include "src/globals.h" 8 #include "src/globals.h"
9 #include "src/isolate.h" 9 #include "src/isolate.h"
10 #include "src/messages.h" 10 #include "src/messages.h"
(...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after
536 536
537 Handle<JSIteratorResult> NewJSIteratorResult(Handle<Object> value, bool done); 537 Handle<JSIteratorResult> NewJSIteratorResult(Handle<Object> value, bool done);
538 538
539 Handle<JSMap> NewJSMap(); 539 Handle<JSMap> NewJSMap();
540 Handle<JSSet> NewJSSet(); 540 Handle<JSSet> NewJSSet();
541 541
542 // TODO(aandrey): Maybe these should take table, index and kind arguments. 542 // TODO(aandrey): Maybe these should take table, index and kind arguments.
543 Handle<JSMapIterator> NewJSMapIterator(); 543 Handle<JSMapIterator> NewJSMapIterator();
544 Handle<JSSetIterator> NewJSSetIterator(); 544 Handle<JSSetIterator> NewJSSetIterator();
545 545
546 Handle<JSFixedArrayIterator> NewJSFixedArrayIterator(
547 Handle<FixedArray> array);
548
549 // Allocates a bound function. 546 // Allocates a bound function.
550 MaybeHandle<JSBoundFunction> NewJSBoundFunction( 547 MaybeHandle<JSBoundFunction> NewJSBoundFunction(
551 Handle<JSReceiver> target_function, Handle<Object> bound_this, 548 Handle<JSReceiver> target_function, Handle<Object> bound_this,
552 Vector<Handle<Object>> bound_args); 549 Vector<Handle<Object>> bound_args);
553 550
554 // Allocates a Harmony proxy. 551 // Allocates a Harmony proxy.
555 Handle<JSProxy> NewJSProxy(Handle<JSReceiver> target, 552 Handle<JSProxy> NewJSProxy(Handle<JSReceiver> target,
556 Handle<JSReceiver> handler); 553 Handle<JSReceiver> handler);
557 554
558 // Reinitialize an JSGlobalProxy based on a constructor. The object 555 // Reinitialize an JSGlobalProxy based on a constructor. The object
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
806 void SetStrictFunctionInstanceDescriptor(Handle<Map> map, 803 void SetStrictFunctionInstanceDescriptor(Handle<Map> map,
807 FunctionMode function_mode); 804 FunctionMode function_mode);
808 805
809 void SetClassFunctionInstanceDescriptor(Handle<Map> map); 806 void SetClassFunctionInstanceDescriptor(Handle<Map> map);
810 }; 807 };
811 808
812 } // namespace internal 809 } // namespace internal
813 } // namespace v8 810 } // namespace v8
814 811
815 #endif // V8_FACTORY_H_ 812 #endif // V8_FACTORY_H_
OLDNEW
« no previous file with comments | « src/contexts.h ('k') | src/factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698