Exemple #1
0
        protected void MergeInto(FieldDefinitionBase <T> target)
        {
            base.MergeInto(target);

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

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

            target.SyntaxNode = SyntaxNode;
        }