Browse Source

Fix output of pattern nodes

pull/2113/head
Siegfried Pammer 5 years ago
parent
commit
ea9d2a2eb2
  1. 2
      ICSharpCode.Decompiler/CSharp/OutputVisitor/CSharpOutputVisitor.cs

2
ICSharpCode.Decompiler/CSharp/OutputVisitor/CSharpOutputVisitor.cs

@ -2588,7 +2588,7 @@ namespace ICSharpCode.Decompiler.CSharp.OutputVisitor @@ -2588,7 +2588,7 @@ namespace ICSharpCode.Decompiler.CSharp.OutputVisitor
} else if (childNode is Repeat) {
VisitRepeat((Repeat)childNode);
} else {
TextWriterTokenWriter.PrintPrimitiveValue(childNode);
writer.WritePrimitiveValue(childNode);
}
}
#endregion

Loading…
Cancel
Save