Boo.Lang.Parser.BooParserBase.AddAttributes C# (CSharp) Method

AddAttributes() protected method

protected AddAttributes ( AttributeCollection target ) : void
target Boo.Lang.Compiler.Ast.AttributeCollection
return void
        protected void AddAttributes(AttributeCollection target)
        {
            if (target != null) target.Extend(_attributes);
            _attributes.Clear();
        }
BooParserBase