Loyc.Syntax.StdLiteralNode.WithAttrs C# (CSharp) Метод

WithAttrs() публичный Метод

public WithAttrs ( VList attrs ) : LNode
attrs VList
Результат LNode
		public override LNode WithAttrs(VList<LNode> attrs)
		{
			if (attrs.Count == 0) return this;
			return new StdLiteralNodeWithAttrs(attrs, _value, this);
		}
	}