more fixing of hasOwnProperty
This commit is contained in:
parent
d4c9c5efdb
commit
20a77d7937
|
@ -925,6 +925,7 @@
|
|||
return lst;
|
||||
};
|
||||
|
||||
var hasOwnProperty = {}.hasOwnProperty;
|
||||
|
||||
|
||||
|
||||
|
@ -937,7 +938,7 @@
|
|||
// that the object has a hasOwnProperty before I use it. I've intentionally
|
||||
// turned off jslint's forin check because it's breaking here:
|
||||
for (key in obj) {
|
||||
if (obj.hasOwnProperty && obj.hasOwnProperty(key)) {
|
||||
if (hasOwnProperty.call(obj, key)) {
|
||||
val = obj[key];
|
||||
if (typeof(val) === 'number') {
|
||||
result = makePair(makeList(makeSymbol(key),
|
||||
|
@ -1074,11 +1075,9 @@
|
|||
var that = this;
|
||||
if (this.id === undefined) {
|
||||
var success = function(position) {
|
||||
if (position.hasOwnProperty &&
|
||||
position.hasOwnProperty('coords') &&
|
||||
position.coords.hasOwnProperty &&
|
||||
position.coords.hasOwnProperty('latitude') &&
|
||||
position.coords.hasOwnProperty('longitude')) {
|
||||
if (hasOwnProperty.call(position, 'coords') &&
|
||||
hasOwnProperty.call(position.coords, 'latitude') &&
|
||||
hasOwnProperty.call(position.coords, 'longitude')) {
|
||||
fireEvent(undefined,
|
||||
objectToEvent({ 'latitude' : Number(position.coords.latitude),
|
||||
'longitude' : Number(position.coords.longitude) }));
|
||||
|
@ -1471,7 +1470,7 @@
|
|||
// ones, since there's an unbound number of those.
|
||||
var validElementNames = {};
|
||||
var isValidElementName = function(name) {
|
||||
if (! (validElementNames.hasOwnProperty(name))) {
|
||||
if (! (hasOwnProperty.call(validElementNames, name))) {
|
||||
// Permissive parsing: see that the name is a valid
|
||||
// element type.
|
||||
// Is there a nicer way to do this besides exception
|
||||
|
|
|
@ -258,16 +258,18 @@ var rawJsworld = {};
|
|||
};
|
||||
Jsworld.fold = fold;
|
||||
|
||||
var hasOwnProperty = {}.hasOwnProperty;
|
||||
|
||||
|
||||
function augment(o, a) {
|
||||
var oo = {}, e;
|
||||
for (e in o) {
|
||||
if (o.hasOwnProperty(e)) {
|
||||
if (hasOwnProperty.call(o, e)) {
|
||||
oo[e] = o[e];
|
||||
}
|
||||
}
|
||||
for (e in a) {
|
||||
if (a.hasOwnProperty(e)) {
|
||||
if (hasOwnProperty.call(a, e)) {
|
||||
oo[e] = a[e];
|
||||
}
|
||||
}
|
||||
|
@ -279,7 +281,7 @@ var rawJsworld = {};
|
|||
function assoc_cons(o, k, v) {
|
||||
var oo = {}, e;
|
||||
for (e in o) {
|
||||
if (o.hasOwnProperty(e)) {
|
||||
if (hasOwnProperty.call(o, e)) {
|
||||
oo[e] = o[e];
|
||||
}
|
||||
}
|
||||
|
@ -337,7 +339,7 @@ var rawJsworld = {};
|
|||
function without(obj, attrib) {
|
||||
var o = {}, a;
|
||||
for (a in obj) {
|
||||
if (obj.hasOwnProperty(a)) {
|
||||
if (hasOwnProperty.call(obj, a)) {
|
||||
if (a !== attrib) {
|
||||
o[a] = obj[a];
|
||||
}
|
||||
|
@ -1263,7 +1265,7 @@ var rawJsworld = {};
|
|||
var a;
|
||||
if (attribs) {
|
||||
for (a in attribs) {
|
||||
if (attribs.hasOwnProperty(a)) {
|
||||
if (hasOwnProperty.call(attribs, a)) {
|
||||
if (typeof attribs[a] === 'function') {
|
||||
add_ev(node, a, attribs[a]);
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue
Block a user