Пример #1
0
 internal override void RemoveChild(Node child)
 {
     if ( _declarefirst_ == child )
     {
     _declarefirst_ = null;
     return;
     }
 }
Пример #2
0
        public void SetDeclarefirst(PDeclarefirst node)
        {
            if(_declarefirst_ != null)
            {
            _declarefirst_.Parent(null);
            }

            if(node != null)
            {
            if(node.Parent() != null)
            {
                node.Parent().RemoveChild(node);
            }

            node.Parent(this);
            }

            _declarefirst_ = node;
        }
Пример #3
0
     public AADeclarefirstlist(
         PDeclarefirst _declarefirst_
 )
     {
         SetDeclarefirst (_declarefirst_);
     }
Пример #4
0
     public AEExpression(
         PDeclarefirst _declarefirst_
 )
     {
         SetDeclarefirst (_declarefirst_);
     }
Пример #5
0
     public ABDeclarefirstlist(
         PDeclarefirstlist _declarefirstlist_,
         TNewline _newline_,
         PDeclarefirst _declarefirst_
 )
     {
         SetDeclarefirstlist (_declarefirstlist_);
         SetNewline (_newline_);
         SetDeclarefirst (_declarefirst_);
     }