Skip to content

Commit

Permalink
Generate latest meta model (#1239)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaeumer authored Apr 24, 2023
1 parent 0b7acc1 commit 9a57110
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions protocol/metaModel.json
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@
"kind": "reference",
"name": "FileOperationRegistrationOptions"
},
"documentation": "The will create files request is sent from the client to the server before files are actually\ncreated as long as the creation is triggered from within the client.\n\n@since 3.16.0",
"documentation": "The will create files request is sent from the client to the server before files are actually\ncreated as long as the creation is triggered from within the client.\n\nThe request can return a `WorkspaceEdit` which will be applied to workspace before the\nfiles are created. Hence the `WorkspaceEdit` can not manipulate the content of the file\nto be created.\n\n@since 3.16.0",
"since": "3.16.0"
},
{
Expand Down Expand Up @@ -3061,7 +3061,7 @@
"kind": "base",
"name": "URI"
},
"documentation": "The document uri to show."
"documentation": "The uri to show."
},
{
"name": "external",
Expand All @@ -3070,7 +3070,7 @@
"name": "boolean"
},
"optional": true,
"documentation": "Indicates to show the resource in an external program.\nTo show for example `https://code.visualstudio.com/`\nin the default WEB browser set `external` to `true`."
"documentation": "Indicates to show the resource in an external program.\nTo show, for example, `https://code.visualstudio.com/`\nin the default WEB browser set `external` to `true`."
},
{
"name": "takeFocus",
Expand All @@ -3091,7 +3091,7 @@
"documentation": "An optional selection range if the document is a text\ndocument. Clients might ignore the property if an\nexternal program is started or the file is not a text\nfile."
}
],
"documentation": "Params to show a document.\n\n@since 3.16.0",
"documentation": "Params to show a resource in the UI.\n\n@since 3.16.0",
"since": "3.16.0"
},
{
Expand Down Expand Up @@ -5682,7 +5682,7 @@
"name": "target",
"type": {
"kind": "base",
"name": "string"
"name": "URI"
},
"optional": true,
"documentation": "The uri this link points to. If missing a resolve request is sent later."
Expand Down Expand Up @@ -6002,7 +6002,7 @@
"documentation": "The edits to apply."
}
],
"documentation": "The parameters passed via a apply workspace edit request."
"documentation": "The parameters passed via an apply workspace edit request."
},
{
"name": "ApplyWorkspaceEditResult",
Expand Down Expand Up @@ -13434,7 +13434,7 @@
{
"name": "UTF8",
"value": "utf-8",
"documentation": "Character offsets count UTF-8 code units."
"documentation": "Character offsets count UTF-8 code units (e.g. bytes)."
},
{
"name": "UTF16",
Expand All @@ -13444,7 +13444,7 @@
{
"name": "UTF32",
"value": "utf-32",
"documentation": "Character offsets count UTF-32 code units.\n\nImplementation note: these are the same as Unicode code points,\nso this `PositionEncodingKind` may also be used for an\nencoding-agnostic representation of character offsets."
"documentation": "Character offsets count UTF-32 code units.\n\nImplementation note: these are the same as Unicode codepoints,\nso this `PositionEncodingKind` may also be used for an\nencoding-agnostic representation of character offsets."
}
],
"supportsCustomValues": true,
Expand Down
2 changes: 1 addition & 1 deletion protocol/metaModel.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@
},
"StructureLiteral": {
"additionalProperties": false,
"description": "Defines a unnamed structure of an object literal.",
"description": "Defines an unnamed structure of an object literal.",
"properties": {
"deprecated": {
"description": "Whether the literal is deprecated or not. If deprecated the property contains the deprecation message.",
Expand Down

0 comments on commit 9a57110

Please sign in to comment.