Boo.Lang.Compiler.Steps.BindAndApplyAttributes.BindAndApply C# (CSharp) Метод

BindAndApply() публичный Метод

public BindAndApply ( ) : bool
Результат bool
        public bool BindAndApply()
        {
            Visit(CompileUnit);
            if (_tasks.Count == 0)
            {
                return false;
            }
            _tasks.Flush();
            return true;
        }

Usage Example

Пример #1
0
        private bool ApplyAttributesAndExpandMacros()
        {
            bool attributesApplied = _attributes.BindAndApply();
            bool macrosExpanded    = _macroExpander.ExpandAll();

            return(attributesApplied || macrosExpanded);
        }