Esempio n. 1
0
            public override void Visit(AmlParser.DefThermalZone defThermalZone)
            {
                AbsoluteNodePath oldPath = currentPath;

                Node node = acpiNamespace.CreateNodeAt(defThermalZone.nameString.nodePath, currentPath);

                currentPath = node.Path;
                foreach (AmlObject amlObject in defThermalZone.amlObjectList)
                {
                    amlObject.Accept(this);
                }

                currentPath = oldPath;
            }
Esempio n. 2
0
 public virtual void Visit(AmlParser.DefThermalZone defThermalZone)
 {
     UnhandledNodeType("DefThermalZone");
 }