Noah S-C

Results 51 issues of Noah S-C

Not sure if this was intended or not, but the visuals changed fairly dramatically in certain aspects (include directives, function names, probably more) Before: ![image](https://user-images.githubusercontent.com/18282288/107306157-4d483980-6a7c-11eb-9040-611b0cf69a23.png) After: ![image](https://user-images.githubusercontent.com/18282288/107306181-5802ce80-6a7c-11eb-9186-3bf02beb6bcc.png)

bug

![image](https://user-images.githubusercontent.com/18282288/42766907-8c7daa74-8913-11e8-841b-7192113f970e.png) vs ![image](https://user-images.githubusercontent.com/18282288/42766922-942262ce-8913-11e8-9b17-e0e37dd1b29e.png) the former is considered valid glsl by glslangValidator

So first, gocode wouldnt give the proper suggestions, suggesting every single variable name and keyword in alphabetical order, instead of eg struct fields. After running through a few troubleshooting tips,...

Adds LSIF indexing workflow with [Kotlin SemanticDB](https://github.com/sourcegraph/lsif-kotlin) compiler plugin via the [lsif-java](https://github.com/sourcegraph/lsif-java) cli tool. Resulting LSIF file is uploaded to [Sourcegraph](https://sourcegraph.com) for "precise code intelligence" navigation. This will help us...

enhancement
ci-cd

Kroto Plus version: 0.6.1 com.google.protobuf version: 0.8.15 --- When trying to adapt the example [krotoPlusConfig.gradle](https://github.com/marcoferrer/kroto-plus/blob/master/example-project/krotoPlusConfig.gradle#L4) to Kotlin Gradle script, I havent been successful. My only success has been with the...

some minor drive-by flattening of the files ## Test plan N/A, very basic flattening, would be caught by compiler/existing tests

cla-signed
rfc-619
team/language-platform-and-navigation

This PR expands the SemanticDB spec to model the `throws` clause in method signatures. This was an outstanding issue outlined in the spec [here](https://github.com/scalameta/scalameta/compare/master...Strum355:nsc/signature-throws?expand=1#diff-6de01c45b01f872f6b7fc8762fbdca7a514b734fec77ba7d47037f3cd0f26272L3451). Working implementation can be seen https://github.com/sourcegraph/lsif-java/pull/160

This PR expands the SemanticDB spec to allow for representing Annotation AST's (incl. parameters) by introducing two new types to the `Tree` family: `AnnotationTree` and `AssignTree`. As `AnnotationTree` is binary...

The utility for this is mostly in testing, wherein I want to be able to test inner state of the server contained within the `LspService`. This avoids the need to...

Using Ktor web server with the following main ```kotlin @UseExperimental(KtorExperimentalAPI::class) fun main(args: Array) { val server = embeddedServer(CIO, 8080, module = Application::module) server.start(wait = true) } ``` ![image](https://user-images.githubusercontent.com/18282288/65962939-a009ee00-e451-11e9-8039-18cf8be38143.png)

bug