Stripped whitespaces in node.d
This commit is contained in:
parent
cc627074b1
commit
cd7d60bb0e
|
@ -1427,14 +1427,14 @@ struct Node
|
|||
* Returns: Constructed node.
|
||||
*/
|
||||
static Node rawNode(Value value, const Mark startMark, const Tag tag,
|
||||
in ScalarStyle scalarStyle,
|
||||
in CollectionStyle collectionStyle) @safe
|
||||
const ScalarStyle scalarStyle,
|
||||
const CollectionStyle collectionStyle) @safe
|
||||
{
|
||||
Node node;
|
||||
node.value_ = value;
|
||||
node.startMark_ = startMark;
|
||||
node.tag_ = tag;
|
||||
node.scalarStyle = scalarStyle;
|
||||
node.value_ = value;
|
||||
node.startMark_ = startMark;
|
||||
node.tag_ = tag;
|
||||
node.scalarStyle = scalarStyle;
|
||||
node.collectionStyle = collectionStyle;
|
||||
|
||||
return node;
|
||||
|
|
Loading…
Reference in a new issue