Brett Sutton

Results 138 comments of Brett Sutton

@natebosch thats for the response >If a method is documented as /// Throws FooException if the Bar is not initialized;, but I know I'm initializing Bar before the call, how...

I think we should also allow documentation to target a base exception class. ```dart class BaseException implements Exception {} class DerivedException extends BaseException {} /// There is no escaping the...

@subzero911 The advantage of doing it in the comments is that a lot of libraries already document the exceptions in the comments so we get to leverage that rather than...

@rrousselGit my inclination is not to go down this path. We still need to document why the exceptions are being throw so this proposal just ends up in documenting the...

work has been moved to https://onepub-dev/dart_console. If you raise a PR there we can look at getting this merged.

stdin is a stream with a listen method, if you combine this with placing stdin into non-line mode I think you might have a solution. I've not tried it but...

definitely something that I need to help with DCli testing.

So the doco states: (for co-regions). > If you use an 'on' transition or an 'onFork' that doesn't explicitly target every sub state then for all other substates their 'initialState'...

> I was mainly talking about non-coregions in the ticket so I'm a little confused as initialState only applies on startup and for co-regions. To be clear you can't directly...

>So I am pretty sure this is possible (entering an abstract state) Then this is the bug. The machine should throw if you're try to do this. There is an...