Chris Calabro
Chris Calabro
right now, mock/http_backend.dart's flush method is implemented so that if requests is empty, it will throw. the preceding comment says "If there are no pending requests when the flush method...
It explains `condition`, `matcher`, `timeout`, but not `interval`.
`Int64#parse{Hex, Int, Radix}` apparently throw `FormatException`. this should be declared in their docs so that callers can narrow a surrounding try-catch to just the correct exception type. btw, i initially...
```dart Int64.parseInt('12343498230482340234820349823049823') ``` yields ```dart -6445017949831143329 ``` which isn't what I'd expect. I would expect this to throw. Compare to Java: ```java Integer.parseInt('12343498230482340234820349823049823'); ``` throws ``` java.lang.NumberFormatException: For input string:...