| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "@UI.InplaceEditor", | |
| 5 "className": "TextEditor.CodeMirrorUtils" | |
| 6 }, | |
| 7 { | |
| 8 "type": "@Common.TokenizerFactory", | 4 "type": "@Common.TokenizerFactory", |
| 9 "className": "TextEditor.CodeMirrorUtils.TokenizerFactory" | 5 "className": "TextEditor.CodeMirrorUtils.TokenizerFactory" |
| 10 }, | 6 }, |
| 11 { | 7 { |
| 12 "type": "@UI.TextEditorFactory", | 8 "type": "@UI.TextEditorFactory", |
| 13 "className": "TextEditor.CodeMirrorTextEditorFactory" | 9 "className": "TextEditor.CodeMirrorTextEditorFactory" |
| 14 } | 10 } |
| 15 ], | 11 ], |
| 16 "dependencies": [ | 12 "dependencies": [ |
| 17 "ui", | 13 "ui", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 34 ], | 30 ], |
| 35 "skip_compilation": [ | 31 "skip_compilation": [ |
| 36 "acorn/acorn.js", | 32 "acorn/acorn.js", |
| 37 "../cm_web_modes/css.js", | 33 "../cm_web_modes/css.js", |
| 38 "../cm_web_modes/javascript.js", | 34 "../cm_web_modes/javascript.js", |
| 39 "../cm_web_modes/xml.js", | 35 "../cm_web_modes/xml.js", |
| 40 "../cm_web_modes/htmlmixed.js", | 36 "../cm_web_modes/htmlmixed.js", |
| 41 "../cm_web_modes/htmlembedded.js" | 37 "../cm_web_modes/htmlembedded.js" |
| 42 ] | 38 ] |
| 43 } | 39 } |
| OLD | NEW |