Evan Shaw
Evan Shaw
This makes it possible to implement functions in Rust that accept a `char32_t`. The `CxxChar` type is necessary because C++ does not guarantee that `char32_t` contains a valid Unicode scalar...
CXX does not emit a default constructor for shared types, which means that the C++ struct's member variables are uninitialized after construction. This makes behavior on the C++ side less...
The MutationObserver strategy fails when the script defining elements is included inside the `` tag, without using `defer` or `async` on the script tag. The error is: ``` Uncaught TypeError:...
Following on from part of the discussion in #100, it would be really useful to install `@types` packages automatically as part of a migration. Some questions and ideas for how...
This PR contains a proposal for a JSON configuration file format for ts-migrate, as well as a basic implementation of the proposal. If the proposal is acceptable, I can write...
I'm playing with ts-migrate on our code base and have developed some custom plugins which are useful for us, but probably not general enough to be worth including in ts-migrate...
Now a panic inside fetch doesn't take down the whole process. This also adds a new optional `Recover` field to Config structs to allow control over transforming recovered values into...
The tests would sometimes fail when run in parallel. (See #39.) We'd make the following loads (each line in a subtest): ``` 1 10 2 10 20 4 5 50...
Panics that happen in the fetch function are not recovered, which means that a panic takes down the entire process. This could be something that I handle myself in every...
PHP 8.2 [deprecates dynamic properties](https://www.php.net/releases/8.2/en.php#deprecate_dynamic_properties). `MapFieldIter` triggers a warning on PHP 8.2 because it doesn't declare the `key_type` property. This PR declares the property to fix the warning.