KirillOsenkov / RoslynQuoter

Roslyn tool that for a given C# program shows syntax tree API calls to construct its syntax tree
http://roslynquoter.azurewebsites.net
Apache License 2.0
922 stars 118 forks source link

add support for new xml parser #3

Closed AviAvni closed 3 years ago

AviAvni commented 9 years ago

Please add support forhttps://github.com/KirillOsenkov/XmlParser

KirillOsenkov commented 9 years ago

You mean for a chunk of XML it should produce calls to syntax factory to produce that XML? Frankly I don't think this is as necessary as for C#, the tree structure is simple enough to figure it out, and when stuck you can always parse and inspect the tree in the debugger.

This is not to say that this is a bad idea, it's just I likely won't have the time to do it, because there's way more important projects I want to do in my spare time ;)

AviAvni commented 9 years ago

It's simple but can help sometime I'll try do it my self base on your work You have some advice?

KirillOsenkov commented 9 years ago

The source code is out there, good luck! :)

KirillOsenkov commented 3 years ago

Sorry I doubt I'll ever get to it.