Last active
February 21, 2020 02:21
-
-
Save bpringe/7afa493a2e1c1104664038c8693c703f to your computer and use it in GitHub Desktop.
Response from cider-nrepl debug middleware after sending eval that calls code that has #break in it
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"code": "(defn print-nums\r\n [n]\r\n (dotimes [i 10]\r\n #break\r\n (prn i)))", | |
"column": 0, | |
"coor": [ | |
3, | |
2 | |
], | |
"debug-value": "nil", | |
"file": "c:\\Users\\Brandon\\Development\\clojure-test\\src\\clojure_test\\core.clj", | |
"id": "4", | |
"input-type": [ | |
"continue", | |
"locals", | |
"inspect", | |
"trace", | |
"here", | |
"continue-all", | |
"next", | |
"out", | |
"inject", | |
"stacktrace", | |
"inspect-prompt", | |
"quit", | |
"in", | |
"eval" | |
], | |
"key": "0d38084b-e02d-4780-badb-a89523c40592", | |
"line": 14, | |
"locals": [ | |
[ | |
"n", | |
"10" | |
], | |
[ | |
"i", | |
"0" | |
] | |
], | |
"original-id": "196", | |
"original-ns": "clojure-test.core", | |
"prompt": [], | |
"session": "4c063492-934c-4f5d-aa4f-9e30fd45b74b", | |
"status": [ | |
"need-debug-input" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment