-
-
Notifications
You must be signed in to change notification settings - Fork 383
Closed
Labels
Description
Hovering over a type shows the entire declaration with the doc comment at the bottom of the tooltip.
A declaration could be thousands or tens of thousands of lines long, we should not reply with the whole thing.
/// Comment
const S = struct {
f: u32,
fn a() void {}
fn a() void {}
fn a() void {}
fn a() void {}
fn a() void {}
fn a() void {}
fn a() void {}
fn a() void {}
fn a() void {}
fn a() void {}
fn a() void {}
fn a() void {}
fn a() void {}
fn a() void {}
fn a() void {}
fn a() void {}
fn a() void {}
fn a() void {}
fn a() void {}
fn a() void {}
fn a() void {}
fn a() void {}
};
pub fn main() !void {
var s: S = undefined;
_ = s;
}
FnControlOption, JohnCoconut, SuperAuguste and alichraghi