Boo.Lang.Compiler.Steps.EmitAssembly.EmitAddressOf C# (CSharp) Method

EmitAddressOf() private method

private EmitAddressOf ( UnaryExpression node ) : void
node Boo.Lang.Compiler.Ast.UnaryExpression
return void
        void EmitAddressOf(UnaryExpression node)
        {
            _byAddress = GetExpressionType(node.Operand);
            node.Operand.Accept(this);
            PushType(PopType().MakePointerType());
            _byAddress = null;
        }
EmitAssembly