| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "@WebInspector.InplaceEditor", | 4 "type": "@WebInspector.InplaceEditor", |
| 5 "className": "WebInspector.CodeMirrorUtils" | 5 "className": "WebInspector.CodeMirrorUtils" |
| 6 }, | 6 }, |
| 7 { | 7 { |
| 8 "type": "@WebInspector.TokenizerFactory", | 8 "type": "@WebInspector.TokenizerFactory", |
| 9 "className": "WebInspector.CodeMirrorUtils.TokenizerFactory" | 9 "className": "WebInspector.CodeMirrorUtils.TokenizerFactory" |
| 10 }, |
| 11 { |
| 12 "type": "@WebInspector.TextEditorFactory", |
| 13 "className": "WebInspector.CodeMirrorTextEditorFactory" |
| 10 } | 14 } |
| 11 ], | 15 ], |
| 12 "dependencies": [ | 16 "dependencies": [ |
| 13 "components" | 17 "components" |
| 14 ], | 18 ], |
| 15 "scripts": [ | 19 "scripts": [ |
| 16 "../cm/codemirror.js", | 20 "../cm/codemirror.js", |
| 17 "../cm/css.js", | 21 "../cm/css.js", |
| 18 "../cm/javascript.js", | 22 "../cm/javascript.js", |
| 19 "../cm/simple.js", | 23 "../cm/simple.js", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 45 "../cm/markselection.js", | 49 "../cm/markselection.js", |
| 46 "../cm/comment.js", | 50 "../cm/comment.js", |
| 47 "../cm/overlay.js", | 51 "../cm/overlay.js", |
| 48 "../cm/activeline.js" | 52 "../cm/activeline.js" |
| 49 ], | 53 ], |
| 50 "resources": [ | 54 "resources": [ |
| 51 "../cm/codemirror.css", | 55 "../cm/codemirror.css", |
| 52 "cmdevtools.css" | 56 "cmdevtools.css" |
| 53 ] | 57 ] |
| 54 } | 58 } |
| OLD | NEW |