vscode: Add missing fields to schema.Opcode (#3169)

These were declared in the `Opcode` struct type, but were never assigned.
They're not actually used by the language server, but I reused this go schema package for a local experiment and found they were missing.
This commit is contained in:
Ben Clayton 2020-02-18 14:01:56 +00:00 коммит произвёл GitHub
Родитель 4d912f4e60
Коммит 79f8caf915
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 1052 добавлений и 0 удалений

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -115,6 +115,8 @@ var (
{{range $i := .SPIRV.Instructions}} {{Title $i.Opname}} = &Opcode {
Opname: "{{$i.Opname}}",
Class: "{{$i.Class}}",
Opcode: {{$i.Opcode}},
Operands: []Operand {•{{range $i := $i.Operands}}
Operand {
Kind: OperandKind{{$i.Kind}},