Use assignValue in assignSymbols.

This commit is contained in:
John-David Dalton
2015-12-26 21:31:26 -06:00
parent e05c8677bf
commit d8213454c2

View File

@@ -2049,7 +2049,7 @@
while (++index < length) {
var symbol = symbols[index];
object[symbol] = source[symbol];
assignValue(object, symbol, source[symbol]);
}
return object;
}