mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-23 12:10:06 +00:00
cdd6829a3e
Supports: * Syntax highlighting. * Red squiggles for parse errors. * Basic sanity checking of operand types. * Jump to definition of id. * Find all uses of id. * Rename id. * Hover definition of id. * Format file.
40 lines
895 B
JSON
40 lines
895 B
JSON
{
|
|
"name": "spirvls",
|
|
"description": "Language support for SPIR-V disassembly files",
|
|
"author": "Google",
|
|
"license": "Apache-2.0",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"publisher": "Google",
|
|
"engines": {
|
|
"vscode": "^0.10.10"
|
|
},
|
|
"categories": [
|
|
"Programming Languages"
|
|
],
|
|
"contributes": {
|
|
"languages": [
|
|
{
|
|
"id": "spirv",
|
|
"extensions": [
|
|
"spvasm"
|
|
]
|
|
}
|
|
],
|
|
"grammars": [
|
|
{
|
|
"language": "spirv",
|
|
"scopeName": "source.spirv",
|
|
"path": "spirv.json"
|
|
}
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"vscode-languageclient": "~4.3.0"
|
|
},
|
|
"activationEvents": [
|
|
"*"
|
|
],
|
|
"main": "./extension.js"
|
|
}
|