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

Side by Side Diff: src/ast.h

Issue 1221433021: Move SmartPointer to base. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 5 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
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/v8.h" 8 #include "src/v8.h"
9 9
10 #include "src/assembler.h" 10 #include "src/assembler.h"
11 #include "src/ast-value-factory.h" 11 #include "src/ast-value-factory.h"
12 #include "src/bailout-reason.h" 12 #include "src/bailout-reason.h"
13 #include "src/base/smart-pointers.h"
13 #include "src/factory.h" 14 #include "src/factory.h"
14 #include "src/isolate.h" 15 #include "src/isolate.h"
15 #include "src/jsregexp.h" 16 #include "src/jsregexp.h"
16 #include "src/list-inl.h" 17 #include "src/list-inl.h"
17 #include "src/modules.h" 18 #include "src/modules.h"
18 #include "src/runtime/runtime.h" 19 #include "src/runtime/runtime.h"
19 #include "src/small-pointer-list.h" 20 #include "src/small-pointer-list.h"
20 #include "src/smart-pointers.h"
21 #include "src/token.h" 21 #include "src/token.h"
22 #include "src/types.h" 22 #include "src/types.h"
23 #include "src/utils.h" 23 #include "src/utils.h"
24 #include "src/variables.h" 24 #include "src/variables.h"
25 25
26 namespace v8 { 26 namespace v8 {
27 namespace internal { 27 namespace internal {
28 28
29 // The abstract syntax tree is an intermediate, light-weight 29 // The abstract syntax tree is an intermediate, light-weight
30 // representation of the parsed JavaScript code suitable for 30 // representation of the parsed JavaScript code suitable for
(...skipping 3575 matching lines...) Expand 10 before | Expand all | Expand 10 after
3606 3606
3607 private: 3607 private:
3608 Zone* zone_; 3608 Zone* zone_;
3609 AstValueFactory* ast_value_factory_; 3609 AstValueFactory* ast_value_factory_;
3610 }; 3610 };
3611 3611
3612 3612
3613 } } // namespace v8::internal 3613 } } // namespace v8::internal
3614 3614
3615 #endif // V8_AST_H_ 3615 #endif // V8_AST_H_
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/background-parsing-task.h » ('j') | src/base/smart-pointers.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698