-
- Language
- Language tour
- Sound null safety
- Extension methods
- Type system
- Effective Dart
- Coding Style
- Documentation
- Usage
- API Design
- Development
…
-
We have historically used libraries for 'detecting' platforms and importing different versions
Long ago this used to work
```dart
import 'javascript_foo.dart'
if (dart.library.io) 'native_64bi…
-
-
Many js-interop features work without the DOM and are being used in dart2js's server mode (e.g. sass uses js-interop within node.js).
I'd like to do most of the js-interop testing in a way that doe…
-
This should cause a null error:
main() {
var x = null;
(x == null) ? null : x..add('foo');
}
The problem is that the grammar interprets the last statement as:
((…
-
Dart SDK 2.0.0-dev.64.1.
**JS**
```javascript
var Foo = function () {
this.value = 42;
};
var foos = [new Foo(), new Foo()];
```
**main.dart**
```dart
@JS()
library js_interop;
i…
-
Skipping the dummy_compiler_test and recursive_import_test reduces the runtime for the dart2js extra tests by 5 minutes (10 minutes total because they are run in checked and unchecked mode) on the dar…
-
In https://dart-review.googlesource.com/c/sdk/+/144469/3 I'm updating cast_test, migrating the corelib version to nnbd, and fixing bugs that were keeping testSet() and testMap() from being run.
dar…
-
Hi there!
It would appear that web workers don't work with DDC. We're following this example: https://github.com/dart-lang/sdk/issues/35730#issuecomment-457449337
Everything works as expected wh…
-
Here is an example of output of this software.
The same log entries can be found in buildlogs failures on http://www.dartdocs.org
```
packages/unsafe_extension/src/unsafe_extension.dart:889:14:
Inter…