Alexandre HOUNDJAGO

Results 14 comments of Alexandre HOUNDJAGO

Slightly renaming is preferable. 1. I propose add a **'s'** to one of them ```zig const builtin = @import("builtin"); const builtins = @import("std").builtins; ``` 2. Rename `@import("builtin");` to `@import("builtin_info");` or...

@andrewrk #20018 This should solve the issue. It implements some suggestions from https://github.com/ziglang/zig/pull/19277#pullrequestreview-2032869151

I think it's better to not add new builtins for the sake of simplification. Buitins should be keep for things we can't do "by hand" or things that can be...

I don't understand what is the meaning of the `_` in ```_, .special_case_3 => baz(), ``` If this line means anything other than [special_case_1, special_case_2] and anything that's something (the...

We could only rename `@import("builtin");` to `@import("build_info");` or `@import("build_constants");`

It more about flutter than dart. There is a plugin called "FlutterEnhancements" that do it. You may need to edit the .sublime-package (in 'Installed Packages' folder) for it to work...

@ifreund I suggest the followings: - `@bitCast` should be the default way for converting bit-to-bit. It makes clear that this is bit manipulation, it's not about integers but about the...

Concerning the main issue, this proposal if implemented will cause some "type safety" problems. Zig's `error.MyError` is error prone (npi), that is one of the reason why we create error...

Hi, I have a similar issue on linux/ubuntu the terminal processes stay active after `CTRL + D`. If you run it from another terminal you can see this message upon...

Example in lib/exports/route_imports.dart ``` export 'dart:io' show HttpStatus; export 'package:dart_frog/dart_frog.dart'; export 'package:my_server/utils/database.dart'; export 'package:my_server/utils/validators.dart' as validators; ... ``` in lib/utils/validators.dart, There would be top-level functions (not static members of a...