Gabriel Terwesten
Gabriel Terwesten
I'm successfully using ``` typescript .then(() => require.context('./', true, /\/app\/.*\.ts$/)) ``` in src/test.ts. @SeerUK's solution seems to trigger a weback bug in the context loader where files are loaded as...
I've taken a stab at implementing binary search and jump table optimizations (https://dart-review.googlesource.com/c/sdk/+/253787). There are some heuristics around when to use which optimization, but generally binary search is used for...
Thanks @alexmarkov! > When building the flow graph, we can probably figure out if switch should be optimized by looking at the case constants and checking if they are either...
Thanks again :) I've added tests to the CL. Can I choose tryjobs or does a maintainer have to do that? I'm also not sure which ones to select.
@alexmarkov I have identified the issue because of which the CL was reverted and a fix for it. Are there specific steps for relanding the CL?
In my code, the improvements are ~7% for JIT and ~25% for AOT. I have a [micro-benchmark](https://github.com/blaugold/dart_switch_bench) with the following results on a MacBook with an M1: ``` $ dart...
@alexmarkov Yeah, I only saw the logs with the segfaults from the release builds, but in the debug builds and `vm-kernel-optcounter-threshold-linux-release-ia32` asserts are hit which should be helpful. > I'm...
Unfortunately, I need to use both because `google_sign_in` requires a `GoogleServices-Info.plist` to configure it on iOS. But I have opened a [PR](https://github.com/flutter/plugins/pull/5250) to support Dart-based configuration of `google_sign_in` on all...
Sorry about the late reply. I was hoping that the mentioned PR would be merged sooner, but it is still open. Irrespective of the PR, `clientId` should be nullable because...
Thanks for the detailed report! The problem is that we are not handling the cases where we prompt the user for input, but there is no terminal connected to stdin....