Boo.Lang.Compiler.Steps.BindAndApplyAttributes.BindAndApply C# (CSharp) Method

BindAndApply() public method

public BindAndApply ( ) : bool
return bool
        public bool BindAndApply()
        {
            Visit(CompileUnit);
            if (_tasks.Count == 0)
            {
                return false;
            }
            _tasks.Flush();
            return true;
        }

Usage Example

Beispiel #1
0
        private bool ApplyAttributesAndExpandMacros()
        {
            bool attributesApplied = _attributes.BindAndApply();
            bool macrosExpanded    = _macroExpander.ExpandAll();

            return(attributesApplied || macrosExpanded);
        }