-
This tracks the migration of the VM specific platform libraries to NNBD. Specifically, this covers the following libraries:
- cli, ffi, developer, io, isolate, mirrors, profiler, vmservice
-
According to the [Dart Static Extension Methods design document](https://github.com/dart-lang/language/blob/master/accepted/2.6/static-extension-members/feature-specification.md#explicit-extension-mem…
-
Here's a fun one that may have the same root cause as #38900. I'm not sure, so filing a separate bug. Given:
```dart
class Foo {
checkNull(T t) {
if (t == null) throw "!";
T t2 = t;
…
-
The lint doesn't fire anywhere in google3, and I couldn't get it to fire by hand, even using the example in the lint docs. Any ideas please?
```dart
abstract class A {
m(a);
}
abstract clas…
-
**Issue by [MetaMemoryT](https://github.com/MetaMemoryT)**
_Originally opened as dart-lang/sdk#20822_
---
pub should support being ran on a cygwin terminal more easily.
npm "Node Package Mana…
-
This may be because I don't fully understand F-bounded quantification, but if I take this program:
```dart
class LinkedList {
test(E entry) {
entry.field!;
}
}
class Entry {
T? f…
-
```dart
class A {
operator [](int index) => index;
}
main() {
A? a = null;
a!?.toString();
a!?.[42];
}
```
The code bove produces errors in bot analyzer and dart
```
Analyzing nu…
-
pkg/front_end/test/memory_file_system_test is flaky, failing with "Timeout".
see here: https://build.chromium.org/p/client.dart/builders/analyzer-win7-release-be/builds/6448/steps/analyze%20pkg%20t…
-
Dart version: 2.2.1-dev.1.1
OS: Windows 10
The following test example tries to calculate `null + null` expression:
``` dart
main() {
try { null + null;} catch (e) {}
print("OK");
}
```
An…
iarkh updated
5 years ago
-
As of today each transpiled file as a `library` statement. The library name is unique and is derived from the file name.
Dart support private members (& functions & variables). Private members start …