Ejemplo n.º 1
0
        protected void MergeInto(FieldDefinitionBase <T> target)
        {
            base.MergeInto(target);

            // Note: we are not copying the SyntaxNode on merge.
        }
Ejemplo n.º 2
0
        protected void CopyTo(FieldDefinitionBase target)
        {
            base.CopyTo(target);

            if (_directives is { Count : > 0 })
Ejemplo n.º 3
0
        protected void CopyTo(FieldDefinitionBase <T> target)
        {
            base.CopyTo(target);

            target.SyntaxNode = SyntaxNode;
        }