aboutsummaryrefslogtreecommitdiff
path: root/tools/addon-sdk-1.12/test/fixtures/loader/cycles/main.js
blob: 6d13200c823167035908e94a15d8589e4ac6293f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 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/. */

'use strict';

var a = require('a');
var b = require('b');
var c = require('c');

exports.a = a;
exports.b = b;
exports.c = c;
exports.main = exports;