Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. this.client.on('break', onbreak_);
  2.  
  3. console.log("Expression to evaluate: ", expression);
  4.  
  5. this.client.req({
  6. command: 'evaluate',
  7. arguments: {
  8. frame: 0,
  9. maxStringLength: 1000,
  10. expression: expression
  11. }
  12. }, function(response) {
  13. console.error("Evaluation response: ", response);
  14. self.client.reqContinue(function() {
  15. // Intentionally blank.
  16. });
  17. });
  18. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement