aboutsummaryrefslogtreecommitdiff
path: root/tools/addon-sdk-1.3/packages/api-utils/tests/interoperablejs-read-only/compliance/nested/test.js
blob: cd8a523fb8c7cd973e89e98e753b3d1699087be8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

exports.print = function () {
    sys.print.apply(undefined, arguments);
};

exports.assert = function (guard, message) {
    if (guard) {
        exports.print('PASS ' + message, 'pass');
    } else {
        exports.print('FAIL ' + message, 'fail');
    }
};