mirror of
https://github.com/ZuneDev/ZuneUIXTools.git
synced 2026-07-27 13:11:59 -07:00
Update Iris
This commit is contained in:
+1
-1
Submodule libs/MicrosoftIris updated: 1667d353c2...13d2fc640b
@@ -168,11 +168,7 @@ public partial class Decompiler
|
|||||||
var newPropValue = stack.Pop();
|
var newPropValue = stack.Pop();
|
||||||
|
|
||||||
var target = stack.Pop();
|
var target = stack.Pop();
|
||||||
var xTarget = ToXmlFriendlyObject(target) as XElement;
|
var xTarget = (XElement)ToXmlFriendlyObject(target);
|
||||||
if (xTarget is null)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
PropertyAssignOnXElement(xTarget, propertyToInit, IrisObject.Create(newPropValue, propertyToInit.PropertyType, _context));
|
PropertyAssignOnXElement(xTarget, propertyToInit, IrisObject.Create(newPropValue, propertyToInit.PropertyType, _context));
|
||||||
|
|
||||||
@@ -190,11 +186,7 @@ public partial class Decompiler
|
|||||||
.FirstOrDefault(s => s.Name == key)?
|
.FirstOrDefault(s => s.Name == key)?
|
||||||
.Type;
|
.Type;
|
||||||
|
|
||||||
var targetInstance = stack.Peek() as XElement;
|
var targetInstance = (XElement)stack.Peek();
|
||||||
if (targetInstance is null)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
PropertyDictionaryAddOnXElement(targetInstance, targetDictProperty, IrisObject.Create(dictValue, dictValueType, _context), key);
|
PropertyDictionaryAddOnXElement(targetInstance, targetDictProperty, IrisObject.Create(dictValue, dictValueType, _context), key);
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user