-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: AST_Accessor missing start / end tokens
- Loading branch information
1 parent
4c0abda
commit 89e94b2
Showing
2 changed files
with
38 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
var UglifyJS = require('../../'); | ||
var assert = require("assert"); | ||
|
||
describe("Accessor tokens", function() { | ||
it("Should fill the token information for accessors (issue #1492)", function() { | ||
// location 0 1 2 3 4 | ||
// 01234567890123456789012345678901234567890123456789 | ||
var ast = UglifyJS.parse("var obj = { get latest() { return undefined; } }"); | ||
|
||
// test all AST_ObjectProperty tokens are set as expected | ||
var checkedAST_ObjectProperty = false; | ||
var checkWalker = new UglifyJS.TreeWalker(function(node, descend) { | ||
if (node instanceof UglifyJS.AST_ObjectProperty) { | ||
checkedAST_ObjectProperty = true; | ||
|
||
assert.equal(node.start.pos, 12); | ||
assert.equal(node.end.endpos, 46); | ||
|
||
assert(node.key instanceof UglifyJS.AST_SymbolRef); | ||
assert.equal(node.key.start.pos, 16); | ||
assert.equal(node.key.end.endpos, 22); | ||
|
||
assert(node.value instanceof UglifyJS.AST_Accessor); | ||
assert.equal(node.value.start.pos, 22); | ||
assert.equal(node.value.end.endpos, 46); | ||
|
||
} | ||
}); | ||
ast.walk(checkWalker); | ||
assert(checkedAST_ObjectProperty, "AST_ObjectProperty not found"); | ||
}); | ||
}); |