Javier Lecuona

Results 25 comments of Javier Lecuona

I'm not quite sure if that is possible, can you set up a hook in the dart compiler? You can compile using a bash script that execute this library before...

This is really interesting. I don't have much time to do that at the moment, but if anyone wants to contribute I'm more than willing to accept a PR.

I finally figured out how to create a builder with this package. I might do it shortly, I might not. This so simple that it should be really easy for...

Thanks for your contribution. This is not hard to do but the most valuable contribution here is you use case. I've created this tool to quickly generate a parser for...

This is a dart issue documented in the project caveats section: `Dart automatically casts doubles without decimals (like 10.0) to int. Use doubles with at least one decimal number.` You...

I think this is an issue with the JSON formatter. I format the json in order to easily pin point warnings for the user, but it seems that the formatter...

Hey this is a really good idea. I'll try to give this priority whenever I get my hands on this.

Hi, thanks for your feedback. The problem here is how to differ a date from a simple string? I could try to parse an ISO8601 format from any string, but...

I ported a javascript JSON AST parser to dart in order to fix this single issue a few weeks ago. It helped me to pinpoint warnings in the JSON editor,...

Hey, nice find. The tool should generate `camelCase` property names. * `_nAME` is an inverted CamelCase which would not comply. * `_NAME` is not camelCase either. * `_name` should be...