コード例 #1
0
ファイル: ConstantExpansion.cs プロジェクト: ronsaldo/chela
        public override AstNode Visit(UsingObjectStatement node)
        {
            // Push the scope.
            PushScope(node.GetScope());

            // Visit the declarations.
            LocalVariablesDeclaration decls = node.GetLocals();
            decls.Accept(this);

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

            // Pop the scope.
            PopScope();

            return node;
        }