Add eval command

This commit is contained in:
Dmitry Sharshakov 2021-08-22 14:44:16 +03:00
parent 838f69929d
commit 3197c2536e
No known key found for this signature in database
GPG key ID: 471FD32E15FD8473
3 changed files with 67 additions and 0 deletions

View file

@ -352,4 +352,19 @@ impl Client {
self.request::<requests::Pause>(args).await
}
pub async fn eval(
&mut self,
expression: String,
frame_id: Option<usize>,
) -> Result<requests::EvaluateResponse> {
let args = requests::EvaluateArguments {
expression,
frame_id,
context: None,
format: None,
};
self.request::<requests::Evaluate>(args).await
}
}