// Copyright 2017 the V8 project authors. All rights reserved.// Use of this source code is governed by a BSD-style license that can be// found in the LICENSE file.#include "src/interpreter/bytecode-source-info.h"#include <iomanip>#include "src/source-position-table.h"namespacev8{namespaceinternal{namespaceinterpreter{std::ostream&operator<<(std::ostream&os,constBytecodeSourceInfo&info){if(info.is_valid()){chardescription=info.is_statement()?'S':'E';os<<info.source_position()<<' '<<description<<'>';}returnos;}}// namespace interpreter}// namespace internal}// namespace v8