| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "view", | 4 "type": "view", |
| 5 "location": "panel", | 5 "location": "panel", |
| 6 "id": "sources", | 6 "id": "sources", |
| 7 "title": "Sources", | 7 "title": "Sources", |
| 8 "order": 30, | 8 "order": 30, |
| 9 "className": "Sources.SourcesPanel" | 9 "className": "Sources.SourcesPanel" |
| 10 }, | 10 }, |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 "shortcut": "F11 Ctrl+;" | 86 "shortcut": "F11 Ctrl+;" |
| 87 }, | 87 }, |
| 88 { | 88 { |
| 89 "platform": "mac", | 89 "platform": "mac", |
| 90 "shortcut": "F11 Meta+;" | 90 "shortcut": "F11 Meta+;" |
| 91 } | 91 } |
| 92 ] | 92 ] |
| 93 }, | 93 }, |
| 94 { | 94 { |
| 95 "type": "@UI.ActionDelegate", | 95 "type": "@UI.ActionDelegate", |
| 96 "actionId": "debugger.step-into-async", |
| 97 "className": "Sources.SourcesPanel.DebuggingActionDelegate", |
| 98 "title": "Step into scheduled function call", |
| 99 "iconClass": "largeicon-step-in-async", |
| 100 "contextTypes": [ |
| 101 "Sources.SourcesPanel" |
| 102 ], |
| 103 "bindings": [ |
| 104 { |
| 105 "platform": "windows,linux", |
| 106 "shortcut": "Alt+F11" |
| 107 }, |
| 108 { |
| 109 "platform": "mac", |
| 110 "shortcut": "Alt+F11" |
| 111 } |
| 112 ] |
| 113 }, |
| 114 { |
| 115 "type": "@UI.ActionDelegate", |
| 96 "actionId": "debugger.step-out", | 116 "actionId": "debugger.step-out", |
| 97 "className": "Sources.SourcesPanel.DebuggingActionDelegate", | 117 "className": "Sources.SourcesPanel.DebuggingActionDelegate", |
| 98 "title": "Step out of current function", | 118 "title": "Step out of current function", |
| 99 "iconClass": "largeicon-step-out", | 119 "iconClass": "largeicon-step-out", |
| 100 "contextTypes": [ | 120 "contextTypes": [ |
| 101 "Sources.SourcesPanel" | 121 "Sources.SourcesPanel" |
| 102 ], | 122 ], |
| 103 "bindings": [ | 123 "bindings": [ |
| 104 { | 124 { |
| 105 "platform": "windows,linux", | 125 "platform": "windows,linux", |
| (...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 663 "navigatorView.css", | 683 "navigatorView.css", |
| 664 "revisionHistory.css", | 684 "revisionHistory.css", |
| 665 "serviceWorkersSidebar.css", | 685 "serviceWorkersSidebar.css", |
| 666 "sourcesPanel.css", | 686 "sourcesPanel.css", |
| 667 "sourcesSearch.css", | 687 "sourcesSearch.css", |
| 668 "sourcesView.css", | 688 "sourcesView.css", |
| 669 "threadsSidebarPane.css", | 689 "threadsSidebarPane.css", |
| 670 "dialog.css" | 690 "dialog.css" |
| 671 ] | 691 ] |
| 672 } | 692 } |
| OLD | NEW |