зеркало из https://github.com/mozilla/pluotsorbet.git
Skip setting undefined values.
This commit is contained in:
Родитель
8e596d8d7f
Коммит
cce2700224
|
@ -858,6 +858,9 @@ MIDP.copyEvent = function(obj, isolateId) {
|
|||
var e = MIDP.nativeEventQueues[isolateId].shift();
|
||||
obj.klass.classInfo.getField("I.type.I").set(obj, e.type);
|
||||
obj.klass.classInfo.fields.forEach(function(field) {
|
||||
if (e[field.name] === undefined) {
|
||||
return;
|
||||
}
|
||||
field.set(obj, e[field.name]);
|
||||
});
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче