mirror of
https://github.com/ZuneDev/ZuneUIXTools.git
synced 2026-07-27 13:11:59 -07:00
17 lines
394 B
C#
17 lines
394 B
C#
using Microsoft.CodeAnalysis;
|
|
using System;
|
|
using System.Xml.Linq;
|
|
|
|
namespace Microsoft.Iris.DecompXml;
|
|
|
|
internal class XIrisScriptContent : XCData
|
|
{
|
|
public SyntaxNode Syntax { get; }
|
|
|
|
public XIrisScriptContent(SyntaxNode syntax) : base("")
|
|
{
|
|
Syntax = syntax.NormalizeWhitespace();
|
|
Value = $"{Environment.NewLine}{Syntax.GetText()}{Environment.NewLine}";
|
|
}
|
|
}
|