2015-10-20 20:59:47 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2015-10-24 01:18:55 +03:00
|
|
|
"use strict";
|
2015-10-20 20:59:47 +03:00
|
|
|
|
2015-10-24 01:18:55 +03:00
|
|
|
exports.allocations = require("./reducers/allocations");
|
2016-03-02 03:20:45 +03:00
|
|
|
exports.censusDisplay = require("./reducers/census-display");
|
2015-11-13 22:20:45 +03:00
|
|
|
exports.diffing = require("./reducers/diffing");
|
2016-03-02 03:20:45 +03:00
|
|
|
exports.dominatorTreeDisplay = require("./reducers/dominator-tree-display");
|
2015-10-15 09:13:17 +03:00
|
|
|
exports.errors = require("./reducers/errors");
|
2015-11-05 03:12:31 +03:00
|
|
|
exports.filter = require("./reducers/filter");
|
2016-02-24 02:38:29 +03:00
|
|
|
exports.sizes = require("./reducers/sizes");
|
2015-11-13 22:20:45 +03:00
|
|
|
exports.snapshots = require("./reducers/snapshots");
|
2016-01-13 23:27:30 +03:00
|
|
|
exports.view = require("./reducers/view");
|