summaryrefslogtreecommitdiff
path: root/test/lisp/progmodes/js-resources/js-indent-align-list-continuation-nil.js
blob: 383b2539a266159c57f3e411d22567f8d7cb8b87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
const funcAssignment = function (arg1,
    arg2,
    arg3) {
    return { test: this,
        which: "would",
        align: "as well with the default setting"
    };
}

function funcDeclaration(arg1,
    arg2
) {
    return [arg1,
        arg2];
}

// Local Variables:
// indent-tabs-mode: nil
// js-indent-align-list-continuation: nil
// End: