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

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

Issue 2307853002: [regexp] Port RegExpExec (Closed)
Patch Set: Remove unused function 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(ReflectHas) \ 486 CPP(ReflectHas) \
487 CPP(ReflectIsExtensible) \ 487 CPP(ReflectIsExtensible) \
488 CPP(ReflectOwnKeys) \ 488 CPP(ReflectOwnKeys) \
489 CPP(ReflectPreventExtensions) \ 489 CPP(ReflectPreventExtensions) \
490 CPP(ReflectSet) \ 490 CPP(ReflectSet) \
491 CPP(ReflectSetPrototypeOf) \ 491 CPP(ReflectSetPrototypeOf) \
492 \ 492 \
493 /* RegExp */ \ 493 /* RegExp */ \
494 CPP(RegExpConstructor) \ 494 CPP(RegExpConstructor) \
495 CPP(RegExpPrototypeCompile) \ 495 CPP(RegExpPrototypeCompile) \
496 CPP(RegExpPrototypeExec) \
496 CPP(RegExpPrototypeToString) \ 497 CPP(RegExpPrototypeToString) \
497 CPP(RegExpPrototypeCapture1Getter) \ 498 CPP(RegExpPrototypeCapture1Getter) \
498 CPP(RegExpPrototypeCapture2Getter) \ 499 CPP(RegExpPrototypeCapture2Getter) \
499 CPP(RegExpPrototypeCapture3Getter) \ 500 CPP(RegExpPrototypeCapture3Getter) \
500 CPP(RegExpPrototypeCapture4Getter) \ 501 CPP(RegExpPrototypeCapture4Getter) \
501 CPP(RegExpPrototypeCapture5Getter) \ 502 CPP(RegExpPrototypeCapture5Getter) \
502 CPP(RegExpPrototypeCapture6Getter) \ 503 CPP(RegExpPrototypeCapture6Getter) \
503 CPP(RegExpPrototypeCapture7Getter) \ 504 CPP(RegExpPrototypeCapture7Getter) \
504 CPP(RegExpPrototypeCapture8Getter) \ 505 CPP(RegExpPrototypeCapture8Getter) \
505 CPP(RegExpPrototypeCapture9Getter) \ 506 CPP(RegExpPrototypeCapture9Getter) \
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
701 702
702 friend class Isolate; 703 friend class Isolate;
703 704
704 DISALLOW_COPY_AND_ASSIGN(Builtins); 705 DISALLOW_COPY_AND_ASSIGN(Builtins);
705 }; 706 };
706 707
707 } // namespace internal 708 } // namespace internal
708 } // namespace v8 709 } // namespace v8
709 710
710 #endif // V8_BUILTINS_BUILTINS_H_ 711 #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