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

OnCastExpression() public method

public OnCastExpression ( Boo.Lang.Compiler.Ast.CastExpression node ) : void
node Boo.Lang.Compiler.Ast.CastExpression
return void
        public override void OnCastExpression(CastExpression node)
        {
            var type = GetType(node.Type);
            LoadExpressionWithType(type, node.Target);
            PushType(type);
        }
EmitAssembly