tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

index.js (1539B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2 * License, v. 2.0. If a copy of the MPL was not distributed with this
      3 * file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */
      4 
      5 import * as ast from "./ast/index";
      6 import * as breakpoints from "./breakpoints/index";
      7 import * as exceptions from "./exceptions";
      8 import * as expressions from "./expressions";
      9 import * as eventListeners from "./event-listeners";
     10 import * as pause from "./pause/index";
     11 import * as navigation from "./navigation";
     12 import * as ui from "./ui";
     13 import * as fileSearch from "./file-search";
     14 import * as projectTextSearch from "./project-text-search";
     15 import * as quickOpen from "./quick-open";
     16 import * as sourcesTree from "./sources-tree";
     17 import * as sources from "./sources/index";
     18 import * as sourcesActors from "./source-actors";
     19 import * as tabs from "./tabs";
     20 import * as threads from "./threads";
     21 import * as toolbox from "./toolbox";
     22 import * as preview from "./preview";
     23 import * as tracing from "./tracing";
     24 import * as contextMenu from "./context-menus/index";
     25 
     26 import * as objectInspector from "devtools/client/shared/components/object-inspector/index";
     27 
     28 export default {
     29  ...ast,
     30  ...navigation,
     31  ...breakpoints,
     32  ...exceptions,
     33  ...expressions,
     34  ...eventListeners,
     35  ...sources,
     36  ...sourcesActors,
     37  ...tabs,
     38  ...pause,
     39  ...ui,
     40  ...fileSearch,
     41  ...objectInspector.actions,
     42  ...projectTextSearch,
     43  ...quickOpen,
     44  ...sourcesTree,
     45  ...threads,
     46  ...toolbox,
     47  ...preview,
     48  ...tracing,
     49  ...contextMenu,
     50 };