Jenny Messerly
Jenny Messerly
> I'll fix to throw – at least it will throw prettier yeah either way. The *Span APIs are provided by this package (rather than being part of the real...
> Hrm...I I think I'll improve the existing error and then we can discuss. sounds good to me!
CC @kegluneq and @mprobst
> It might be easier, and easier to keep up to date with rolls, to tweak the scripts that generate the dart:html and related libraries to generate with a name...
> Just making the VM automatically serve the right thing when importing > dart:html on the server sounds good. Any idea what a timeline in that would > be? I...
> https://github.com/lrhn/dep-configured-imports yup, that would work, but I'm not sure we need the fully configurable imports just for the package:html case, which we could just have the embedder know about
Interestingly, with https://github.com/lrhn/dep-pkgspec we have another possible solution, via package spec file. Configure it to map: ``` package:html --> /path/to/package/html_browser ``` Basically, your "web" entry points and server entry points...
/sub ... I'm having the same problem (also covered in #123). Our existing tests use Platform.script to load data, making hard to migrate to test runner. Anecdotally: most packages I've...
fyi, I got it working with something a bit simpler: https://github.com/dart-lang/dev_compiler/blob/master/test/test_util.dart ``` dart import 'dart:mirrors'; import 'package:path/path.dart' as path; final String testDirectory = path.dirname((reflectClass(_TestUtils).owner as LibraryMirror).uri.path); class _TestUtils {} ```...
Hi, I'm not sure if this is DDC related? The message says "Warning from Dart2JS" and the bazel build also seems to be using dart2js "WARNING: dart:mirrors support in dart2js...