(in-package :extreload) (defun target-get-targets-msg (call-id) (jsown:to-json `(:obj ("id" . ,call-id) ("method" . "Target.getTargets")))) (defun target-attach-to-target-msg (call-id target-id) (jsown:to-json `(:obj ("id" . ,call-id) ("method" . "Target.attachToTarget") ("params" . (:obj ("targetId" . ,target-id) ("flatten" . t)))))) (defun target-attached-to-target-msg-p (message) (equal (json-obj-get message "method") "Target.attachedToTarget")) (defun runtime-evaluate-msg (call-id session-id expression) (jsown:to-json `(:obj ("id" . ,call-id) ("sessionId" . ,session-id) ("method" . "Runtime.evaluate") ("params" . (:obj ("expression" . ,expression)))))) (defun parse-get-targets-response (response) (let* ((result (json-obj-get response "result")) (targetInfos (json-obj-get result "targetInfos"))) targetInfos)) .6 for Vimperator plugins
aboutsummaryrefslogtreecommitdiffstats
path: root/bufferecho.js
blob: 10f48e984640a38f6a303ec470f12dbbc910bab1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48