1
0
mirror of https://github.com/robertkrimen/otto synced 2025-10-26 20:28:49 +08:00
Ugh.
This commit is contained in:
Robert Krimen
2013-01-25 09:59:42 -08:00
parent a13a891d92
commit 20d2e8bba6
48 changed files with 3962 additions and 3971 deletions

View File

@@ -212,7 +212,7 @@ func (self *_object) defineOwnProperty(name string, descriptor _property, throw
}
// Test that, if enumerable is set on the property descriptor, then it should
// be the same as the existing property
if descriptor.mode & 0020 == 0 && descriptor.enumerable() != property.enumerable() {
if descriptor.mode&0020 == 0 && descriptor.enumerable() != property.enumerable() {
return false
}
}