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

Side by Side Diff: src/ast.h

Issue 1285163003: Move regexp implementation into its own folder. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: addressed comment Created 5 years, 4 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/assembler.cc ('k') | src/bytecodes-irregexp.h » ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_AST_H_ 5 #ifndef V8_AST_H_
6 #define V8_AST_H_ 6 #define V8_AST_H_
7 7
8 #include "src/assembler.h" 8 #include "src/assembler.h"
9 #include "src/ast-value-factory.h" 9 #include "src/ast-value-factory.h"
10 #include "src/bailout-reason.h" 10 #include "src/bailout-reason.h"
11 #include "src/base/flags.h" 11 #include "src/base/flags.h"
12 #include "src/base/smart-pointers.h" 12 #include "src/base/smart-pointers.h"
13 #include "src/factory.h" 13 #include "src/factory.h"
14 #include "src/isolate.h" 14 #include "src/isolate.h"
15 #include "src/jsregexp.h"
16 #include "src/list.h" 15 #include "src/list.h"
17 #include "src/modules.h" 16 #include "src/modules.h"
17 #include "src/regexp/jsregexp.h"
18 #include "src/runtime/runtime.h" 18 #include "src/runtime/runtime.h"
19 #include "src/small-pointer-list.h" 19 #include "src/small-pointer-list.h"
20 #include "src/token.h" 20 #include "src/token.h"
21 #include "src/types.h" 21 #include "src/types.h"
22 #include "src/utils.h" 22 #include "src/utils.h"
23 #include "src/variables.h" 23 #include "src/variables.h"
24 24
25 namespace v8 { 25 namespace v8 {
26 namespace internal { 26 namespace internal {
27 27
(...skipping 3599 matching lines...) Expand 10 before | Expand all | Expand 10 after
3627 3627
3628 private: 3628 private:
3629 Zone* zone_; 3629 Zone* zone_;
3630 AstValueFactory* ast_value_factory_; 3630 AstValueFactory* ast_value_factory_;
3631 }; 3631 };
3632 3632
3633 3633
3634 } } // namespace v8::internal 3634 } } // namespace v8::internal
3635 3635
3636 #endif // V8_AST_H_ 3636 #endif // V8_AST_H_
OLDNEW
« no previous file with comments | « src/assembler.cc ('k') | src/bytecodes-irregexp.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698