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

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

Issue 2305573002: [regexp] Port RegExp getters and setters (Closed)
Patch Set: Fix for layout test expectations 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 475 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 CPP(ReflectGetPrototypeOf) \ 486 CPP(ReflectGetPrototypeOf) \
487 CPP(ReflectHas) \ 487 CPP(ReflectHas) \
488 CPP(ReflectIsExtensible) \ 488 CPP(ReflectIsExtensible) \
489 CPP(ReflectOwnKeys) \ 489 CPP(ReflectOwnKeys) \
490 CPP(ReflectPreventExtensions) \ 490 CPP(ReflectPreventExtensions) \
491 CPP(ReflectSet) \ 491 CPP(ReflectSet) \
492 CPP(ReflectSetPrototypeOf) \ 492 CPP(ReflectSetPrototypeOf) \
493 \ 493 \
494 /* RegExp */ \ 494 /* RegExp */ \
495 CPP(RegExpConstructor) \ 495 CPP(RegExpConstructor) \
496 CPP(RegExpPrototypeCapture1Getter) \
497 CPP(RegExpPrototypeCapture2Getter) \
498 CPP(RegExpPrototypeCapture3Getter) \
499 CPP(RegExpPrototypeCapture4Getter) \
500 CPP(RegExpPrototypeCapture5Getter) \
501 CPP(RegExpPrototypeCapture6Getter) \
502 CPP(RegExpPrototypeCapture7Getter) \
503 CPP(RegExpPrototypeCapture8Getter) \
504 CPP(RegExpPrototypeCapture9Getter) \
505 CPP(RegExpPrototypeFlagsGetter) \
506 CPP(RegExpPrototypeGlobalGetter) \
507 CPP(RegExpPrototypeIgnoreCaseGetter) \
508 CPP(RegExpPrototypeInputGetter) \
509 CPP(RegExpPrototypeInputSetter) \
510 CPP(RegExpPrototypeLastMatchGetter) \
511 CPP(RegExpPrototypeLastParenGetter) \
512 CPP(RegExpPrototypeLeftContextGetter) \
513 CPP(RegExpPrototypeMultilineGetter) \
514 CPP(RegExpPrototypeRightContextGetter) \
515 CPP(RegExpPrototypeSourceGetter) \
516 CPP(RegExpPrototypeSpeciesGetter) \
517 CPP(RegExpPrototypeStickyGetter) \
518 CPP(RegExpPrototypeUnicodeGetter) \
496 \ 519 \
497 /* SharedArrayBuffer */ \ 520 /* SharedArrayBuffer */ \
498 CPP(SharedArrayBufferPrototypeGetByteLength) \ 521 CPP(SharedArrayBufferPrototypeGetByteLength) \
499 TFJ(AtomicsLoad, 3) \ 522 TFJ(AtomicsLoad, 3) \
500 TFJ(AtomicsStore, 4) \ 523 TFJ(AtomicsStore, 4) \
501 \ 524 \
502 /* String */ \ 525 /* String */ \
503 ASM(StringConstructor) \ 526 ASM(StringConstructor) \
504 ASM(StringConstructor_ConstructStub) \ 527 ASM(StringConstructor_ConstructStub) \
505 CPP(StringFromCodePoint) \ 528 CPP(StringFromCodePoint) \
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
673 696
674 friend class Isolate; 697 friend class Isolate;
675 698
676 DISALLOW_COPY_AND_ASSIGN(Builtins); 699 DISALLOW_COPY_AND_ASSIGN(Builtins);
677 }; 700 };
678 701
679 } // namespace internal 702 } // namespace internal
680 } // namespace v8 703 } // namespace v8
681 704
682 #endif // V8_BUILTINS_BUILTINS_H_ 705 #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