Konstantin Scheglov
Konstantin Scheglov
```dart class C { final (num, {String name}) r; const C(int i, String s): r = (i + 1, name: s + "!"); } ```
@jensjoha ``` typedef ({int j}) R2(); ``` I think this should be parsed as a function type alias with a record type as the return type. But it is parsed...
https://www.yourkit.com/docs/java/help/merged_paths.jsp
Why do I get only about `12 GB/s` with this manual benchmark? ```rust use std::time::Instant; use simdutf8::basic::from_utf8; fn main() { let mut vec: Vec = Vec::new(); for i in 0..1024...
## avoidable_null_assertion *Replace above with your proposed rule name. (See notes on naming in [Writing Lints].)* ## Description **AVOID** null assertions when they can be avoided. You can instead use...
When we comment out code with existing `// TODO(name): text`, it becomes ```dart // // TODO(name): text // print(42); ``` This code reports the lint. I propose to allow multiple...
This seems inconsistent.