Skip to content

Hover over module that implements a module type does not work #178

Closed
@cknitt

Description

@cknitt

(Beta2)

Given

module JsLogger = {
  let log = (msg: string) => Js.log(msg)
}

hover over the module JsLogger works fine:

Bildschirmfoto 2021-04-27 um 18 53 16

However, for

module type Logger = {
  let log: string => unit
}

module JsLogger: Logger = {
  let log = (msg: string) => Js.log(msg)
}

hover neither works for the module JsLogger nor for the module type Logger.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions