yum-mirror/slang

Making it easier to work with shaders

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

Yong HeMisc language server improvements. (#7569)eb7f3357a

master
289 B17 linesraw
1//TEST:LANG_SERVER(filecheck=CHECK):
2interface IBar{ associatedtype AT; }
3interface IFoo
4{
5    associatedtype B : IBar;
6//HOVER:7,12
7    static B.AT execute(int x);
8}
9
10struct Impl : IFoo
11{
12//COMPLETE:13,14
13    override 
14}
15
16//CHECK: associatedtype This.B
17//CHECK: static B.AT execute(int x)