Boo.Lang.Compiler.Steps.MacroAndAttributeExpansion.ApplyAttributesAndExpandMacros C# (CSharp) Méthode

ApplyAttributesAndExpandMacros() private méthode

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