Esempio n. 1
0
        public override AstNode Visit(InterfaceDefinition node)
        {
            // Fix the vtable.
            node.GetStructure().FixInheritance();

            // Update the scope.
            PushScope(node.GetScope());

            // Visit his children.
            VisitList(node.GetChildren());

            // Restore the scope.
            PopScope();

            return(node);
        }