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

Side by Side Diff: src/builtins/builtins.h

Issue 2312743002: Revert of [regexp] Port RegExpConstructor (Closed)
Patch Set: Format 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
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins-regexp.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 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 #ifndef V8_BUILTINS_BUILTINS_H_ 5 #ifndef V8_BUILTINS_BUILTINS_H_
6 #define V8_BUILTINS_BUILTINS_H_ 6 #define V8_BUILTINS_BUILTINS_H_
7 7
8 #include "src/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/handles.h" 9 #include "src/handles.h"
10 10
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 CPP(ReflectGet) \ 501 CPP(ReflectGet) \
502 CPP(ReflectGetOwnPropertyDescriptor) \ 502 CPP(ReflectGetOwnPropertyDescriptor) \
503 CPP(ReflectGetPrototypeOf) \ 503 CPP(ReflectGetPrototypeOf) \
504 CPP(ReflectHas) \ 504 CPP(ReflectHas) \
505 CPP(ReflectIsExtensible) \ 505 CPP(ReflectIsExtensible) \
506 CPP(ReflectOwnKeys) \ 506 CPP(ReflectOwnKeys) \
507 CPP(ReflectPreventExtensions) \ 507 CPP(ReflectPreventExtensions) \
508 CPP(ReflectSet) \ 508 CPP(ReflectSet) \
509 CPP(ReflectSetPrototypeOf) \ 509 CPP(ReflectSetPrototypeOf) \
510 \ 510 \
511 /* RegExp */ \
512 CPP(RegExpConstructor) \
513 \
514 /* SharedArrayBuffer */ \ 511 /* SharedArrayBuffer */ \
515 CPP(SharedArrayBufferPrototypeGetByteLength) \ 512 CPP(SharedArrayBufferPrototypeGetByteLength) \
516 TFJ(AtomicsLoad, 3) \ 513 TFJ(AtomicsLoad, 3) \
517 TFJ(AtomicsStore, 4) \ 514 TFJ(AtomicsStore, 4) \
518 \ 515 \
519 /* String */ \ 516 /* String */ \
520 ASM(StringConstructor) \ 517 ASM(StringConstructor) \
521 ASM(StringConstructor_ConstructStub) \ 518 ASM(StringConstructor_ConstructStub) \
522 CPP(StringFromCodePoint) \ 519 CPP(StringFromCodePoint) \
523 /* ES6 section 21.1.2.1 String.fromCharCode ( ...codeUnits ) */ \ 520 /* ES6 section 21.1.2.1 String.fromCharCode ( ...codeUnits ) */ \
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
694 691
695 friend class Isolate; 692 friend class Isolate;
696 693
697 DISALLOW_COPY_AND_ASSIGN(Builtins); 694 DISALLOW_COPY_AND_ASSIGN(Builtins);
698 }; 695 };
699 696
700 } // namespace internal 697 } // namespace internal
701 } // namespace v8 698 } // namespace v8
702 699
703 #endif // V8_BUILTINS_BUILTINS_H_ 700 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins-regexp.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698