Nicholas Shahan
Nicholas Shahan
```dart dcall(f, args, [@undefined named]) => _checkAndCall( f, null, JS('', 'void 0'), null, args, named, JS('', 'f.name')); dgcall(f, typeArgs, args, [@undefined named]) => _checkAndCall(f, null, JS('', 'void 0'), typeArgs, args,...
The error message when you call a torn off generic method dynamically contains the wrong name of the method. ```dart main() { var a = A(); dynamic d = a.foo;...
I ran into an issue where running build_runner build/serve was crashing due to an analyzer error (stack trace below). @jakemac53 correctly diagnosed this as a cached summary that needed to...
Playing with the HTML library is hindered by the default color scheme in the output area. The text is black and the background color is dark enough that it is...
I just confused myself when I ran `mono_repo presubmit` and got the same error printed to the file for all actions "PKG environment variable must be set!". I finally just...
When working on the tests from a package in the Dart SDK (https://github.com/dart-lang/sdk/tree/main/pkg/dev_compiler/test) I see links above the main method to run or debug but not above any of the...
There are new test failures on [[ddc] Add non-null assertions when setting fields](https://dart-review.googlesource.com/c/sdk/+/258220). The tests ``` language/nnbd/null_assertions/parameter_checks_fields_and_setters_test RuntimeError (expected Pass) ``` are failing on configurations ``` dart2js-hostasserts-weak-linux-x64-d8 ``` I added...
If you have an error in an angular template file `build_runner serve` shows an error in the web browser that looks something like: ``` AssetNotFoundException: angular_components_example|lib/gallery/home.template.dart #0 ScratchSpace.ensureAssets. (package:scratch_space/src/scratch_space.dart:98:23) #1...
package:pedantic had a useful feature where it created versioned yaml files (see https://github.com/google/pedantic/tree/master/lib) that made adopting new versions easier. This would allow different packages in a mono repo to choose...
In Windows 10 from the command line executing `pub global run bazel:bazelify` in a directory with a pubspec.yaml file produces this error: `Unsupported operation: Cannot extract a file path from...