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;
        }