Modestas Valauskas

Results 117 comments of Modestas Valauskas

It is non-trivial to correctly implement the second requirement (from scratch) because block comments can nest and therefore are not regular i.e. they can't be recognized by a regular expression....

The issue description says: > Read annotations of specific types from the library or the first directive. I understood this to mean that you would also need to extract annotations...

Recently I came across [vendor](https://pub.dev/packages/vendor). It seems like this package (maintained by google, not a third party) would be a perfect fit for solving this issue by occasionally vendoring analyzer.

> Its just a place for googlers to put their open source things with minimal headache and red tape. Got it, I didn't know that. Thank you.

Thank you for the response! I've tried your suggestion (I assume you meant `bindCallback`) but it fails now with a `Bad state: expect() may only be called within a test.`...

Just a quick question: Is this proposed `@macro`-annotation-machinery only relevant to macro authors, or will consumers of a macro also have to use the `@macro`-annotation-machinery to declare that a particular...

Here's another datapoint: I also appear to be encountering this issue with the following SVG: ![invoice_detail_gradient](https://github.com/zathras/jovial_svg/assets/24444584/cd5be5e2-cf90-49de-bb1e-c802f1a612eb) Here's what I'm seeing in a Flutter App: Here's what I was expecting: ![expected](https://github.com/zathras/jovial_svg/assets/24444584/0145d81f-f019-4ccb-a23e-9926b8606f3e)...

@stereobooster here's one more example of something that appears to be very similar to what you have built: http://www.martin-loetzsch.de/S-DOT/index.html (it's just an example, not a general purpose framework) What I...

I was able to create a generic widget that "resembles" the old behavior with the code at the bottom of this comment. It is based on the example that @moffatman...

Here's another example: I'm using switch case labels to implement a [sort-merge join](https://en.wikipedia.org/wiki/Sort-merge_join): ```dart Iterable Function({ required int Function(L, R) outer_inner_order, required T Function(L, R) emit, }) already_sorted_sort_merge_join({ required final...