yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
b4fc380af
master
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