blob: 6cbffd2c7f14b4d88a09a8ef9782d72b87e68341 [file] [log] [blame]
// Copyright 2021 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SRC_DEVELOPER_DEBUG_ZXDB_DEBUG_ADAPTER_HANDLERS_REQUEST_STEP_IN_H_
#define SRC_DEVELOPER_DEBUG_ZXDB_DEBUG_ADAPTER_HANDLERS_REQUEST_STEP_IN_H_
#include "src/developer/debug/zxdb/debug_adapter/context.h"
namespace zxdb {
void OnRequestStepIn(DebugAdapterContext* ctx, const dap::StepInRequest& request,
std::function<void(dap::ResponseOrError<dap::StepInResponse>)> callback);
} // namespace zxdb
#endif // SRC_DEVELOPER_DEBUG_ZXDB_DEBUG_ADAPTER_HANDLERS_REQUEST_STEP_IN_H_