Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

fix($rootScope, ngRepeat): accomodate objects resulting from Object.create(null) #11028

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ng/directive/ngRepeat.js
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ var ngRepeatDirective = ['$parse', '$animate', function($parse, $animate) {
// if object, extract keys, in enumeration order, unsorted
collectionKeys = [];
for (var itemKey in collection) {
if (collection.hasOwnProperty(itemKey) && itemKey.charAt(0) !== '$') {
if (hasOwnProperty.call(collection, itemKey) && itemKey.charAt(0) !== '$') {
collectionKeys.push(itemKey);
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/ng/rootScope.js
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ function $RootScopeProvider() {
// copy the items to oldValue and look for changes.
newLength = 0;
for (key in newValue) {
if (newValue.hasOwnProperty(key)) {
if (hasOwnProperty.call(newValue, key)) {
newLength++;
newItem = newValue[key];
oldItem = oldValue[key];
Expand All @@ -625,7 +625,7 @@ function $RootScopeProvider() {
// we used to have more keys, need to find them and destroy them.
changeDetected++;
for (key in oldValue) {
if (!newValue.hasOwnProperty(key)) {
if (!hasOwnProperty.call(newValue, key)) {
oldLength--;
delete oldValue[key];
}
Expand Down
12 changes: 12 additions & 0 deletions test/ng/directive/ngRepeatSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,18 @@ describe('ngRepeat', function() {
expect(element.text()).toEqual('age:20|wealth:20|prodname:Bingo|dogname:Bingo|codename:20|');
});

it('should iterate over an object/map not inheriting from Object.prototype', function() {
element = $compile(
'<ul>' +
'<li ng-repeat="( key , value ) in items">{{key}}:{{value}}|</li>' +
'</ul>')(scope);
scope.items = Object.create(null);
scope.items.go = 'cougs';
scope.items.viva = 'pumas';
scope.$digest();
expect(element.text()).toEqual('go:cougs|viva:pumas|');
});

describe('track by', function() {
it('should track using expression function', function() {
element = $compile(
Expand Down
8 changes: 8 additions & 0 deletions test/ng/rootScopeSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -829,6 +829,14 @@ describe('Scope', function() {
}).not.toThrow();
});

it('should not throw an error because the object does not inherit from Object.prototype', function() {
$rootScope.obj = Object.create(null);
$rootScope.obj.a = 'B';
expect(function() {
$rootScope.$digest();
}).not.toThrow();
});

});
});

Expand Down