Merge pull request #3388 from AgentME/dupgetters

Partial T7173 Fix: Prevent accessors being seen as duplicates of each other
This commit is contained in:
Henry Zhu 2016-03-02 16:22:57 -05:00
commit bca622abbc
3 changed files with 65 additions and 4 deletions

View File

@ -14,13 +14,42 @@ export default function() {
const { node } = path;
const plainProps = node.properties.filter((prop) => !t.isSpreadProperty(prop) && !prop.computed);
const alreadySeenNames = Object.create(null);
// A property is a duplicate key if:
// * the property is a data property, and is preceeded by a data,
// getter, or setter property of the same name.
// * the property is a getter property, and is preceeded by a data or
// getter property of the same name.
// * the property is a setter property, and is preceeded by a data or
// setter property of the same name.
const alreadySeenData = Object.create(null);
const alreadySeenGetters = Object.create(null);
const alreadySeenSetters = Object.create(null);
for (let prop of plainProps) {
const name = getName(prop.key);
if (!alreadySeenNames[name]) {
alreadySeenNames[name] = true;
} else {
let isDuplicate = false;
switch (prop.kind) {
case "get":
if (alreadySeenData[name] || alreadySeenGetters[name]) {
isDuplicate = true;
}
alreadySeenGetters[name] = true;
break;
case "set":
if (alreadySeenData[name] || alreadySeenSetters[name]) {
isDuplicate = true;
}
alreadySeenSetters[name] = true;
break;
default:
if (alreadySeenData[name] || alreadySeenGetters[name] || alreadySeenSetters[name]) {
isDuplicate = true;
}
alreadySeenData[name] = true;
}
if (isDuplicate) {
// Rely on the computed properties transform to split the property
// assignment out of the object literal.
prop.computed = true;

View File

@ -0,0 +1,16 @@
var x = {
get a() {},
set a(x) {},
get a() {},
set a(x) {},
a: 3,
b: 4,
get b() {},
set b(x) {},
get c() {},
c: 5,
set c(x) {},
set d(x) {},
d: 6,
get d() {}
};

View File

@ -0,0 +1,16 @@
var x = {
get a() {},
set a(x) {},
get ["a"]() {},
set ["a"](x) {},
["a"]: 3,
b: 4,
get ["b"]() {},
set ["b"](x) {},
get c() {},
["c"]: 5,
set ["c"](x) {},
set d(x) {},
["d"]: 6,
get ["d"]() {}
};