Boo.Lang.Compiler.Steps.MacroAndAttributeExpansion.ShouldReify C# (CSharp) 메소드

ShouldReify() 개인적인 메소드

private ShouldReify ( ) : bool
리턴 bool
        private bool ShouldReify()
        {
            var result = _macroAndAttributeCount != Attribute.ConstructionCount + MacroStatement.ConstructionCount;
            if (result)
            {
                _macroAndAttributeCount = Attribute.ConstructionCount + MacroStatement.ConstructionCount;
            }
            return result;
        }