Boo.Lang.Compiler.Steps.MacroAndAttributeExpansion.ApplyAttributesAndExpandMacros C# (CSharp) Метод

ApplyAttributesAndExpandMacros() приватный Метод

private ApplyAttributesAndExpandMacros ( ) : bool
Результат bool
        private bool ApplyAttributesAndExpandMacros()
        {
            bool attributesApplied = _attributes.BindAndApply();
            bool macrosExpanded = _macroExpander.ExpandAll();
            return attributesApplied || macrosExpanded;
        }