yum-mirror/slang

Making it easier to work with shaders

git clone https://git.yummers.dev/yum-mirror/slang

Yong HeLanguage Server Enhancements (#7604)b4fc380af

master
259 B15 linesraw
1//TEST:LANG_SERVER(filecheck=CHECK):
2struct MyType
3{
4    __init(int x) {}
5}
6
7void test()
8{
9//HOVER:10,18
10    let obj = MyType(5);
11    //        ^^^^^
12    //        Hover here should show info for the ctor, not the type.
13}
14
15//CHECK: MyType.init