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

ShouldLeaveValueOnStack() static private method

static private ShouldLeaveValueOnStack ( Expression node ) : bool
node Expression
return bool
        static bool ShouldLeaveValueOnStack(Expression node)
        {
            return node.ParentNode.NodeType != NodeType.ExpressionStatement;
        }
EmitAssembly