ju1ius
ju1ius
@emilio Sorry, my example had too little context. I get your point but in this case, the _real_ public type **is** node_kind (u16), **not** node_kinds (c_int), i.e.: ```c typedef uint16_t...
> This would also be useful for using syn crate to manipulate the generated bindings to implement custom traits and such for generated types. Another case where this would prove...
> IF a corresponding XDG environment variable exists THEN use it's location according to the spec. > ELSE use the current behavior / locations in the .bun/ directory. FWIW, this...
Unfortunately, just tweaking the version constraints won't be enough to make it work, because PhpUnit 11 _removes_ features that are currently used by this library (like the `Constraint::exporter()` method).
@bgrande Conversion between PHP and Rust types is not free. The structures have to be allocated and the bytes copied. The conversion from `ZendHashTable` to `Vec` is likely to be...
> It might work even better with a Zval reference return value but that didn't work for me due to having to define lifetime specifiers. Which the `php_function` macro doesn't...
Thanks @mjd-tech, your workaround works for me ! > export MANROFFOPT='-c' > I don't know what this actually does, but it seems to work. ``` $ man groff | grep...
Hi @aschempp, I can't get this feature to work. The following config: ```php $configurator->services() ->set(Foo::class) ->tag('foo', ['bar' => ['baz' => 42]); ``` throws: ``` [Symfony\Component\DependencyInjection\Exception\RuntimeException] at symfony/dependency-injection/Compiler/CheckDefinitionValidityPass.php line 67: A...
@nicolas-grekas OK, will take a stab at it during the week.
@nicolas-grekas Done in #48958 😉