File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -5261,6 +5261,7 @@ class Method {
5261
5261
case r'client/unregisterCapability' :
5262
5262
case r'workspace/didChangeWatchedFiles' :
5263
5263
case r'workspace/symbol' :
5264
+ case r'workspace/executeCommand' :
5264
5265
case r'workspace/applyEdit' :
5265
5266
case r'textDocument/didOpen' :
5266
5267
case r'textDocument/didChange' :
@@ -5335,6 +5336,10 @@ class Method {
5335
5336
/// Constant for the 'workspace/symbol' method.
5336
5337
static const workspace_symbol = const Method ._(r'workspace/symbol' );
5337
5338
5339
+ /// Constant for the 'workspace/executeCommand' method.
5340
+ static const workspace_executeCommand =
5341
+ const Method ._(r'workspace/executeCommand' );
5342
+
5338
5343
/// Constant for the 'workspace/applyEdit' method.
5339
5344
static const workspace_applyEdit = const Method ._(r'workspace/applyEdit' );
5340
5345
Original file line number Diff line number Diff line change 5
5
final _typeScriptBlockPattern =
6
6
new RegExp (r'\B```typescript([\S\s]*?)\n```' , multiLine: true );
7
7
final _methodNamesPattern = new RegExp (
8
- r'''_(?:Notification|Request)_: \r?\n\* method: '(.*?)'\r?\n''' ,
8
+ r'''_(?:Notification|Request):?_:? \r?\n\* method: '(.*?)'\r?\n''' ,
9
9
multiLine: true );
10
10
11
11
/// Extracts fenced code blocks that are explicitly marked as TypeScript from a
You can’t perform that action at this time.
0 commit comments