Jonathan Rezende

Results 87 comments of Jonathan Rezende

this works: ```html {children}}> hello ```

thanks for your response. My case is that I have groups of users that receive messages. The messages can only be seen within the group and they can be read...

it is a bug in the sdk, here is the [issue](https://github.com/dart-lang/sdk/issues/49243)

this seems to be working: ```dart import 'package:js_bindings/js_bindings.dart'; Future main() async { final access = await window.navigator .requestMIDIAccess(MIDIOptions(sysex: true, software: false)); access.inputs.forEach((c, k, m) { print('Test $c\n $k\n $m'); });...

I've uploaded an initial `README.md` in the `tool` directory. For the moment I am working on the `WebComponents` example and then I will document the dart code and builders.

Today I use `Map` and `dynamic` calls in the builders because of the JSON stuff from the IDL files. Before documenting it full I would like to change the builders...

can view extend another view? as it can be used as interfaces for JSON (https://github.com/dart-lang/language/issues/783), I am wondering if we could mix up multiple interfaces. In TS it would be...

@cedvdb I guess `Partial` is closer to the [Records proposal](https://github.com/dart-lang/language/blob/master/working/0546-patterns/records-feature-specification.md)

could views be used to somehow make a core type stricter? ie: ``` view PositiveInt on Int { PositiveInt() { if (this < 1) { throw '$this is not a...