OLD | NEW |
| (Empty) |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 importScript("../cm/codemirror.js"); | |
6 importScript("../cm/css.js"); | |
7 importScript("../cm/javascript.js"); | |
8 importScript("../cm/xml.js"); | |
9 importScript("../cm/htmlmixed.js"); | |
10 | |
11 importScript("../cm/matchbrackets.js"); | |
12 importScript("../cm/closebrackets.js"); | |
13 importScript("../cm/markselection.js"); | |
14 importScript("../cm/comment.js"); | |
15 importScript("../cm/overlay.js"); | |
16 | |
17 importScript("../cm/htmlembedded.js"); | |
18 importScript("../cm/clike.js"); | |
19 importScript("../cm/coffeescript.js"); | |
20 importScript("../cm/php.js"); | |
21 importScript("../cm/python.js"); | |
22 importScript("../cm/shell.js"); | |
23 importScript("CodeMirrorUtils.js"); | |
24 importScript("CodeMirrorTextEditor.js"); | |
25 importScript("SourceFrame.js"); | |
26 | |
27 importScript("GoToLineDialog.js"); | |
28 importScript("ResourceView.js"); | |
29 importScript("FontView.js"); | |
30 importScript("ImageView.js"); | |
OLD | NEW |