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

Side by Side Diff: src/ast/modules.h

Issue 2344143003: Moved zones and zone related stuff in its own directory. (Closed)
Patch Set: Renamed defines to match new file locations 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
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_MODULES_H_ 5 #ifndef V8_AST_MODULES_H_
6 #define V8_AST_MODULES_H_ 6 #define V8_AST_MODULES_H_
7 7
8 #include "src/parsing/scanner.h" // Only for Scanner::Location. 8 #include "src/parsing/scanner.h" // Only for Scanner::Location.
9 #include "src/pending-compilation-error-handler.h" 9 #include "src/pending-compilation-error-handler.h"
10 #include "src/zone-containers.h" 10 #include "src/zone/zone-containers.h"
11 11
12 namespace v8 { 12 namespace v8 {
13 namespace internal { 13 namespace internal {
14 14
15 15
16 class AstRawString; 16 class AstRawString;
17 class ModuleInfoEntry; 17 class ModuleInfoEntry;
18 18
19 class ModuleDescriptor : public ZoneObject { 19 class ModuleDescriptor : public ZoneObject {
20 public: 20 public:
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 // into: 171 // into:
172 // import {a as b} from "X"; export {a as c} from "X"; 172 // import {a as b} from "X"; export {a as c} from "X";
173 // (The import entry is never deleted.) 173 // (The import entry is never deleted.)
174 void MakeIndirectExportsExplicit(Zone* zone); 174 void MakeIndirectExportsExplicit(Zone* zone);
175 }; 175 };
176 176
177 } // namespace internal 177 } // namespace internal
178 } // namespace v8 178 } // namespace v8
179 179
180 #endif // V8_AST_MODULES_H_ 180 #endif // V8_AST_MODULES_H_
OLDNEW
« no previous file with comments | « src/ast/ast-type-bounds.h ('k') | src/ast/scopes.h » ('j') | src/compiler/live-range-separator.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698