Move LSP semantics into typed analysis
This commit is contained in:
parent
f4cd4f4458
commit
bac1183593
26 changed files with 1232 additions and 637 deletions
|
|
@ -36,6 +36,22 @@
|
|||
],
|
||||
"description": "Gotlin data class"
|
||||
},
|
||||
"Generic Function": {
|
||||
"prefix": "genericfun",
|
||||
"body": [
|
||||
"fun ${1:identity}<${2:T}>(${3:value}: ${2:T}): ${2:T} {",
|
||||
" return ${3:value}",
|
||||
"}"
|
||||
],
|
||||
"description": "Gotlin generic function"
|
||||
},
|
||||
"Generic Data Class": {
|
||||
"prefix": "genericclass",
|
||||
"body": [
|
||||
"data class ${1:Box}<${2:T}>(var ${3:value}: ${2:T})"
|
||||
],
|
||||
"description": "Gotlin generic data class"
|
||||
},
|
||||
"SQL Table Row": {
|
||||
"prefix": "tablerow",
|
||||
"body": [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue