Tim203

Results 5 issues of Tim203

First of all, thank you for creating Rustler! I really enjoy using it. I have a Cargo.toml that looks something like this: ```toml [package] name = "name" [lib] name =...

## What happened? Original code: ```java protected void findSubscriptions( @NonNull Object listener, TriConsumer consumer) { } ``` After reformatting: ```java protected void findSubscriptions( @NonNull Object listener, TriConsumer consumer) { }...

At the moment it's just a draft as I don't have everything I want to implement implemented yet, but gives a general idea of how I intent things to work....

This adds support for YAML comments. Let me know if you want to see changes.

component/yaml

This PR adds support for nested message sections like: ```java public interface RootSection { HelloSection hello(); @MessageSection("hello") interface HelloSection { @Message("world") String world(@Receiver User user); } } ``` and ```java...