Skip to content

Commit

Permalink
Update meta model (#1374)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaeumer authored Dec 5, 2023
1 parent f0e9a36 commit 1ddfc55
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions protocol/metaModel.json
Original file line number Diff line number Diff line change
Expand Up @@ -13199,6 +13199,17 @@
"optional": true,
"documentation": "The client supports the `activeParameter` property on `SignatureInformation`\nliteral.\n\n@since 3.16.0",
"since": "3.16.0"
},
{
"name": "noActiveParameterSupport",
"type": {
"kind": "base",
"name": "boolean"
},
"optional": true,
"documentation": "The client supports the `activeParameter` property on\n`SignatureHelp`/`SignatureInformation` being set to `null` to\nindicate that no parameter should be active.\n\n@since 3.18.0\n@proposed",
"since": "3.18.0",
"proposed": true
}
],
"documentation": "@since 3.18.0\n@proposed",
Expand Down Expand Up @@ -14012,8 +14023,9 @@
{
"name": "Debug",
"value": 5,
"documentation": "A debug message.\n\n@since 3.18.0",
"since": "3.18.0"
"documentation": "A debug message.\n\n@since 3.18.0\n@proposed",
"since": "3.18.0",
"proposed": true
}
],
"documentation": "The message type"
Expand Down Expand Up @@ -14292,6 +14304,13 @@
"value": "refactor.inline",
"documentation": "Base kind for refactoring inline actions: 'refactor.inline'\n\nExample inline actions:\n\n- Inline function\n- Inline variable\n- Inline constant\n- ..."
},
{
"name": "RefactorMove",
"value": "refactor.move",
"documentation": "Base kind for refactoring move actions: `refactor.move`\n\nExample move actions:\n\n- Move a function to a new file\n- Move a property between classes\n- Move method to base class\n- ...\n\n@since 3.18.0\n@proposed",
"since": "3.18.0",
"proposed": true
},
{
"name": "RefactorRewrite",
"value": "refactor.rewrite",
Expand Down Expand Up @@ -14370,12 +14389,12 @@
"values": [
{
"name": "Invoked",
"value": 0,
"value": 1,
"documentation": "Completion was triggered explicitly by a user gesture."
},
{
"name": "Automatic",
"value": 1,
"value": 2,
"documentation": "Completion was triggered automatically while editing."
}
],
Expand Down

0 comments on commit 1ddfc55

Please sign in to comment.