Khushboo
Khushboo
Currently read API generation process uses a default implementation of that class but it should rather use `new()` and generate variables for each property in that structure. More discussion: https://github.com/amazon-ion/ion-cli/pull/61#discussion_r1412357995
This should be _at least_ a `long`, and probably even a `BigDecimal`. _Originally posted by @popematt in https://github.com/amazon-ion/ion-cli/pull/61#discussion_r1425839524_
I think we need a different name for this because all of the other commands use the `--output` flag to specify a file handle for the tool's `STDOUT`. Maybe we...
Use lazy reader and writer APIs from `ion-rust` which makes it easier to implement `read_from` and `write_to` API in the generated code.
Following is a solution to add support for document comments for the generated code: Add a code generation constraint that represent document comment. e.g. ### Input Schema ```ISL type::{ name:...
Add support to generate struct based on Ion Schema. This will include supporting conversion of various struct related constraints in ISL. Following ISL constraints will be supported with struct generation:...
Currently we have all the following subcommands in `beta-subcommands` feature. In order to make it available with default installation of `ion-cli` move away stable subcommands from `beta-subcommands` feature and from...
#792 and #791 showed miri tests failure on lazy writer `close` code. Related logs: https://github.com/amazon-ion/ion-rust/actions/runs/9748900720/job/26904915793?pr=792#step:5:272
Related PR: #792 > Having this as a mandatory parameter on the constructor is a bit unfortunate, but I'm ok with it for now since we'll eventually be able to...
Code generation uses logic to find some of the constraints like `type`, `element` in order to determine the final abstract data type. This would be simplified with some sorting of...