Boo.Lang.Compiler.Steps.MacroAndAttributeExpansion.ApplyAttributesAndExpandMacros C# (CSharp) Method

ApplyAttributesAndExpandMacros() private method

private ApplyAttributesAndExpandMacros ( ) : bool
return bool
        private bool ApplyAttributesAndExpandMacros()
        {
            bool attributesApplied = _attributes.BindAndApply();
            bool macrosExpanded = _macroExpander.ExpandAll();
            return attributesApplied || macrosExpanded;
        }