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

Unified Diff: src/parsing/preparser.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/parsing/preparse-data-format.h ('k') | src/parsing/preparser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/parsing/preparser.h
diff --git a/src/preparser.h b/src/parsing/preparser.h
similarity index 99%
rename from src/preparser.h
rename to src/parsing/preparser.h
index ff9282c2eeef13748d7690c42e347860ca9b2838..e93f3f998dc27687069e47412b6db94f8de4c46c 100644
--- a/src/preparser.h
+++ b/src/parsing/preparser.h
@@ -2,17 +2,17 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef V8_PREPARSER_H
-#define V8_PREPARSER_H
+#ifndef V8_PARSING_PREPARSER_H
+#define V8_PARSING_PREPARSER_H
+#include "src/ast/scopes.h"
#include "src/bailout-reason.h"
-#include "src/expression-classifier.h"
-#include "src/func-name-inferrer.h"
#include "src/hashmap.h"
#include "src/messages.h"
-#include "src/scanner.h"
-#include "src/scopes.h"
-#include "src/token.h"
+#include "src/parsing/expression-classifier.h"
+#include "src/parsing/func-name-inferrer.h"
+#include "src/parsing/scanner.h"
+#include "src/parsing/token.h"
namespace v8 {
namespace internal {
@@ -4259,4 +4259,4 @@ void ParserBase<Traits>::ClassLiteralChecker::CheckProperty(
} // namespace internal
} // namespace v8
-#endif // V8_PREPARSER_H
+#endif // V8_PARSING_PREPARSER_H
« no previous file with comments | « src/parsing/preparse-data-format.h ('k') | src/parsing/preparser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698