Add test for reference paths (#5296)

This commit is contained in:
Jason Laster 2017-02-15 12:05:31 -08:00 committed by Henry Zhu
parent b77c435f0f
commit ff2c24eed2

View File

@ -14,6 +14,19 @@ function getPath(code) {
return path;
}
function getIdentifierPath(code) {
const ast = parse(code);
let nodePath;
traverse(ast, {
Identifier: function(path) {
nodePath = path;
path.stop();
}
});
return nodePath;
}
describe("scope", function () {
describe("binding paths", function () {
it("function declaration id", function () {
@ -67,5 +80,13 @@ describe("scope", function () {
_foo2: { }
`).scope.generateUid("foo"), "_foo3");
});
it("reference paths", function() {
const path = getIdentifierPath("function square(n) { return n * n}");
const referencePaths = path.context.scope.bindings.n.referencePaths;
assert.equal(referencePaths.length, 2);
assert.deepEqual(referencePaths[0].node.loc.start, { line: 1, column:28 });
assert.deepEqual(referencePaths[1].node.loc.start, { line: 1, column:32 });
});
});
});