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") {
"src/ast/scopes.h",
"src/ast/variables.cc",
"src/ast/variables.h",
"src/background-parsing-task.cc",
"src/background-parsing-task.h",
"src/bailout-reason.cc",
"src/bailout-reason.h",
"src/basic-block-profiler.cc",
......@@ -1819,6 +1817,8 @@ v8_source_set("v8_base") {
"src/objects/template-objects.h",
"src/ostreams.cc",
"src/ostreams.h",
"src/parsing/background-parsing-task.cc",
"src/parsing/background-parsing-task.h",
"src/parsing/duplicate-finder.h",
"src/parsing/expression-classifier.h",
"src/parsing/expression-scope-reparenter.cc",
......
......@@ -21,7 +21,6 @@
#include "src/accessors.h"
#include "src/api-natives.h"
#include "src/assert-scope.h"
#include "src/background-parsing-task.h"
#include "src/base/functional.h"
#include "src/base/logging.h"
#include "src/base/platform/platform.h"
......@@ -53,6 +52,7 @@
#include "src/json-stringifier.h"
#include "src/messages.h"
#include "src/objects-inl.h"
#include "src/parsing/background-parsing-task.h"
#include "src/parsing/parser.h"
#include "src/parsing/scanner-character-streams.h"
#include "src/pending-compilation-error-handler.h"
......
......@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// 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/parsing/parser.h"
......
......@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef V8_BACKGROUND_PARSING_TASK_H_
#define V8_BACKGROUND_PARSING_TASK_H_
#ifndef V8_PARSING_BACKGROUND_PARSING_TASK_H_
#define V8_PARSING_BACKGROUND_PARSING_TASK_H_
#include <memory>
......@@ -46,7 +46,6 @@ struct StreamedSource {
StreamedSource& operator=(const StreamedSource&) = delete;
};
class BackgroundParsingTask : public ScriptCompiler::ScriptStreamingTask {
public:
BackgroundParsingTask(StreamedSource* source,
......@@ -63,4 +62,4 @@ class BackgroundParsingTask : public ScriptCompiler::ScriptStreamingTask {
} // namespace internal
} // namespace v8
#endif // V8_BACKGROUND_PARSING_TASK_H_
#endif // V8_PARSING_BACKGROUND_PARSING_TASK_H_
......@@ -604,8 +604,6 @@
'ast/scopes.h',
'ast/variables.cc',
'ast/variables.h',
'background-parsing-task.cc',
'background-parsing-task.h',
'bailout-reason.cc',
'bailout-reason.h',
'basic-block-profiler.cc',
......@@ -1200,6 +1198,8 @@
'objects/template-objects.h',
'ostreams.cc',
'ostreams.h',
'parsing/background-parsing-task.cc',
'parsing/background-parsing-task.h',
'parsing/duplicate-finder.h',
'parsing/expression-classifier.h',
'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