You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The structure panel omits the types errpage, jobpage, breakpoint and session for the following input. Removing the 2 class definitions makes them reappear.
class type ['a] page =
object
inherit GObj.widget
method update : 'a -> unit
method on_update : callback:('a -> unit) -> unit
method data : 'a
end
class type control =
object
method detach : unit -> unit
end
type errpage = (int * string) list page
type jobpage = string CString.Map.t page
type breakpoint = {
file : string;
}
type session = {
buffer : GText.buffer;
}
let create_buffer () = ()
The text was updated successfully, but these errors were encountered:
plugin version: 098-2020,3
Description
The structure panel omits the types
errpage
,jobpage
,breakpoint
andsession
for the following input. Removing the 2 class definitions makes them reappear.The text was updated successfully, but these errors were encountered: