Commit 3de3a6b0 authored by Marja Hölttä's avatar Marja Hölttä Committed by Commit Bot

[cleanup] Move src/background-parsing-task.* to parsing/.

This file was somehow inexplicably not moved when other parsing files were.

BUG=v8:6921

Cq-Include-Trybots: master.tryserver.chromium.linux:linux_chromium_rel_ng
Change-Id: Iea92c61f83dbb5a8688c404ba87d35fa58e749b9
Reviewed-on: https://chromium-review.googlesource.com/718197
Commit-Queue: Marja Hölttä <marja@chromium.org>
Reviewed-by: 's avatarIgor Sheludko <ishell@chromium.org>
Reviewed-by: 's avatarToon Verwaest <verwaest@chromium.org>
Reviewed-by: 's avatarMichael Starzinger <mstarzinger@chromium.org>
Cr-Commit-Position: refs/heads/master@{#48522}
parent d5be2832
...@@ -1221,8 +1221,6 @@ v8_source_set("v8_base") { ...@@ -1221,8 +1221,6 @@ v8_source_set("v8_base") {
"src/ast/scopes.h", "src/ast/scopes.h",
"src/ast/variables.cc", "src/ast/variables.cc",
"src/ast/variables.h", "src/ast/variables.h",
"src/background-parsing-task.cc",
"src/background-parsing-task.h",
"src/bailout-reason.cc", "src/bailout-reason.cc",
"src/bailout-reason.h", "src/bailout-reason.h",
"src/basic-block-profiler.cc", "src/basic-block-profiler.cc",
...@@ -1819,6 +1817,8 @@ v8_source_set("v8_base") { ...@@ -1819,6 +1817,8 @@ v8_source_set("v8_base") {
"src/objects/template-objects.h", "src/objects/template-objects.h",
"src/ostreams.cc", "src/ostreams.cc",
"src/ostreams.h", "src/ostreams.h",
"src/parsing/background-parsing-task.cc",
"src/parsing/background-parsing-task.h",
"src/parsing/duplicate-finder.h", "src/parsing/duplicate-finder.h",
"src/parsing/expression-classifier.h", "src/parsing/expression-classifier.h",
"src/parsing/expression-scope-reparenter.cc", "src/parsing/expression-scope-reparenter.cc",
......
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
#include "src/accessors.h" #include "src/accessors.h"
#include "src/api-natives.h" #include "src/api-natives.h"
#include "src/assert-scope.h" #include "src/assert-scope.h"
#include "src/background-parsing-task.h"
#include "src/base/functional.h" #include "src/base/functional.h"
#include "src/base/logging.h" #include "src/base/logging.h"
#include "src/base/platform/platform.h" #include "src/base/platform/platform.h"
...@@ -53,6 +52,7 @@ ...@@ -53,6 +52,7 @@
#include "src/json-stringifier.h" #include "src/json-stringifier.h"
#include "src/messages.h" #include "src/messages.h"
#include "src/objects-inl.h" #include "src/objects-inl.h"
#include "src/parsing/background-parsing-task.h"
#include "src/parsing/parser.h" #include "src/parsing/parser.h"
#include "src/parsing/scanner-character-streams.h" #include "src/parsing/scanner-character-streams.h"
#include "src/pending-compilation-error-handler.h" #include "src/pending-compilation-error-handler.h"
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "src/background-parsing-task.h" #include "src/parsing/background-parsing-task.h"
#include "src/objects-inl.h" #include "src/objects-inl.h"
#include "src/parsing/parser.h" #include "src/parsing/parser.h"
......
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef V8_BACKGROUND_PARSING_TASK_H_ #ifndef V8_PARSING_BACKGROUND_PARSING_TASK_H_
#define V8_BACKGROUND_PARSING_TASK_H_ #define V8_PARSING_BACKGROUND_PARSING_TASK_H_
#include <memory> #include <memory>
...@@ -46,7 +46,6 @@ struct StreamedSource { ...@@ -46,7 +46,6 @@ struct StreamedSource {
StreamedSource& operator=(const StreamedSource&) = delete; StreamedSource& operator=(const StreamedSource&) = delete;
}; };
class BackgroundParsingTask : public ScriptCompiler::ScriptStreamingTask { class BackgroundParsingTask : public ScriptCompiler::ScriptStreamingTask {
public: public:
BackgroundParsingTask(StreamedSource* source, BackgroundParsingTask(StreamedSource* source,
...@@ -63,4 +62,4 @@ class BackgroundParsingTask : public ScriptCompiler::ScriptStreamingTask { ...@@ -63,4 +62,4 @@ class BackgroundParsingTask : public ScriptCompiler::ScriptStreamingTask {
} // namespace internal } // namespace internal
} // namespace v8 } // namespace v8
#endif // V8_BACKGROUND_PARSING_TASK_H_ #endif // V8_PARSING_BACKGROUND_PARSING_TASK_H_
...@@ -604,8 +604,6 @@ ...@@ -604,8 +604,6 @@
'ast/scopes.h', 'ast/scopes.h',
'ast/variables.cc', 'ast/variables.cc',
'ast/variables.h', 'ast/variables.h',
'background-parsing-task.cc',
'background-parsing-task.h',
'bailout-reason.cc', 'bailout-reason.cc',
'bailout-reason.h', 'bailout-reason.h',
'basic-block-profiler.cc', 'basic-block-profiler.cc',
...@@ -1200,6 +1198,8 @@ ...@@ -1200,6 +1198,8 @@
'objects/template-objects.h', 'objects/template-objects.h',
'ostreams.cc', 'ostreams.cc',
'ostreams.h', 'ostreams.h',
'parsing/background-parsing-task.cc',
'parsing/background-parsing-task.h',
'parsing/duplicate-finder.h', 'parsing/duplicate-finder.h',
'parsing/expression-classifier.h', 'parsing/expression-classifier.h',
'parsing/expression-scope-reparenter.cc', 'parsing/expression-scope-reparenter.cc',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment