File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ Take a look at before and after
9
9
** Before:**
10
10
11
11
``` lua
12
- client . request (' workspace/executeCommand' , cmd_info , function (err , res )
12
+ request (' workspace/executeCommand' , cmd_info , function (err , res )
13
13
if err then
14
14
log .error (err )
15
15
else
@@ -22,7 +22,7 @@ end, buffer)
22
22
23
23
``` lua
24
24
-- on error, statement will fail throwing an error just like any synchronous API
25
- local result = client . request (' workspace/executeCommand' , cmd_info , buffer )
25
+ local result = request (' workspace/executeCommand' , cmd_info , buffer )
26
26
log .debug (result )
27
27
```
28
28
@@ -88,3 +88,11 @@ runner(function()
88
88
end )
89
89
.run ()
90
90
```
91
+
92
+ ### Output
93
+
94
+ ``` txt
95
+ 18:44:46 starting the execution
96
+ 18:44:48 success_result is: hello world
97
+ 18:44:50 parent error handler ...-async-await/lua/async/waits/wait_with_error_handler.lua:14: ...-async-await/lua/async/waits/wait_with_error_handler.lua:14: something went wrong
98
+ ```
You can’t perform that action at this time.
0 commit comments