foobar.json (1379B)
1 { 2 "sources": { 3 "sources": { 4 "fooSourceActor": { 5 "id": "fooSourceActor", 6 "url": "http://example.com/foo/foo.js", 7 "filename": "foo.js", 8 "pathname": "foo/foo.js" 9 }, 10 "barSourceActor": { 11 "id": "barSourceActor", 12 "url": "http://example.com/bar/bar.js", 13 "filename": "bar.js", 14 "pathname": "bar/bar.js" 15 }, 16 "bazzSourceActor": { 17 "id": "bazzSourceActor", 18 "url": "http://example.com/bazz/bazz.js", 19 "filename": "bazz.js", 20 "pathname": "bazz/bazz.js" 21 } 22 }, 23 "sourcesText": { 24 "fooSourceActor": { 25 "contentType": "text/javascript", 26 "text": "function() {\n return foo;\n}" 27 }, 28 "barSourceActor": { 29 "contentType": "text/javascript", 30 "text": "function() {\n return bar;\n}" 31 }, 32 "bazzSourceActor": { 33 "contentType": "text/javascript", 34 "text": "function() {\n return bazz;\n}" 35 } 36 } 37 }, 38 "breakpoints": { 39 "breakpoints": { 40 "fooBreakpointActor": { 41 "id": "fooBreakpointActor", 42 "location": { 43 "sourceId": "fooSourceActor", 44 "line": 16 45 } 46 }, 47 "barBreakpointActor": { 48 "id": "barBreakpointActor", 49 "location": { 50 "sourceId": "barSourceActor", 51 "line": 18 52 } 53 } 54 } 55 } 56 }