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

Unified Diff: src/ast/ast.h

Issue 1481613002: Create ast/ and parsing/ subdirectories and move appropriate files (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/ast-value-factory.cc ('k') | src/ast/ast.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ast/ast.h
diff --git a/src/ast.h b/src/ast/ast.h
similarity index 99%
rename from src/ast.h
rename to src/ast/ast.h
index cb9fb6f5596e49fea53fa1fe102b29b4bda2adc2..973f1056ca913b9886d2079e98dfa5e04422d06c 100644
--- a/src/ast.h
+++ b/src/ast/ast.h
@@ -2,25 +2,25 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef V8_AST_H_
-#define V8_AST_H_
+#ifndef V8_AST_AST_H_
+#define V8_AST_AST_H_
#include "src/assembler.h"
-#include "src/ast-value-factory.h"
+#include "src/ast/ast-value-factory.h"
+#include "src/ast/modules.h"
+#include "src/ast/variables.h"
#include "src/bailout-reason.h"
#include "src/base/flags.h"
#include "src/base/smart-pointers.h"
#include "src/factory.h"
#include "src/isolate.h"
#include "src/list.h"
-#include "src/modules.h"
+#include "src/parsing/token.h"
#include "src/regexp/jsregexp.h"
#include "src/runtime/runtime.h"
#include "src/small-pointer-list.h"
-#include "src/token.h"
#include "src/types.h"
#include "src/utils.h"
-#include "src/variables.h"
namespace v8 {
namespace internal {
@@ -3672,4 +3672,4 @@ class AstNodeFactory final BASE_EMBEDDED {
} // namespace internal
} // namespace v8
-#endif // V8_AST_H_
+#endif // V8_AST_AST_H_
« no previous file with comments | « src/ast-value-factory.cc ('k') | src/ast/ast.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698