Marko Lahma

Results 469 comments of Marko Lahma

Small status update on my side, this is more about parsing, not the public API. * still working on class improvements * they lead me to path of fixing scope...

I tagged intermediate release `v3.0.0-beta-4`which should appear on NuGet soon. Allows easier dogfooding.

@jogibear9988 I believe that is the case when I get this finished. My goal is to get all outstanding class-parsing problems sorted and I've already found some interesting bugs and...

Now that JsxToken inherits from Token which would have been struct things are not as straightforward.

I'm leaning towards having custom [TextSpan](https://github.com/sebastienros/parlot/blob/main/src/Parlot/TextSpan.cs) like Parlot has and then allowing span-based operations via it's `Span` property. Span can be used where the methods take it as input, like...

@Xicy I might have some prototype in some branch, I probably need to check if it's any good starting point and how far away from current main...

Hmm, didn't know about `StringSegment`, thanks for sharing. It's a bit heavy to bring a dependency package just for that though. What I remember from Memory, it brought quite the...

I've tested this with StringSegment and memory benefits are very little as long as Token instances dominate allocations.

[Started a discussion](https://github.com/VerifyTests/Verify/discussions/545).