Skip to content

Commit e79007c

Browse files
committed
Update uv_stream_t type annotation
Requires uv. prefix in neovim nightly
1 parent c28a22f commit e79007c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/dap/session.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ end
4747
---@field private message_callbacks table<number, fun(err: nil|dap.ErrorResponse, body: nil|table, seq: number)>
4848
---@field private message_requests table<number, any>
4949
---@field private client Client
50-
---@field private handle uv_stream_t
50+
---@field private handle uv.uv_stream_t
5151
---@field current_frame dap.StackFrame|nil
5252
---@field initialized boolean
5353
---@field stopped_thread_id number|nil
@@ -1089,7 +1089,7 @@ local default_reverse_request_handlers = {
10891089
local next_session_id = 1
10901090

10911091
---@param adapter Adapter
1092-
---@param handle uv_stream_t
1092+
---@param handle uv.uv_stream_t
10931093
---@return Session
10941094
local function new_session(adapter, opts, handle)
10951095
local handlers = {}

0 commit comments

Comments
 (0)