Exemplo n.º 1
0
        public virtual string ResolveType( int depth, out INode type, out bool constness, out bool pointer )
        {
            type = this;
            constness = false;
            pointer = false;

            return GetName();
        }
Exemplo n.º 2
0
 public void AddChild( INode child )
 {
     children.Add( child );
 }