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

                currentPath = acpiNamespace.LookupNode(defScope.nameString.nodePath, currentPath).Path;
                foreach (TermObj termObj in defScope.termList)
                {
                    termObj.Accept(this);
                }
                currentPath = oldPath;
            }
Esempio n. 2
0
 public virtual void Visit(AmlParser.DefScope defScope)
 {
     UnhandledNodeType("DefScope");
 }