Library names on windows don't respect --library-root (missing subdirs) #29710
Labels
os-windows
type-bug
Incorrect behavior (everything from a crash to more subtle misbehavior)
web-dev-compiler
See dart-lang/pub#1622 for the original issue.
You can repro by downloading the attached project, and the running:
dartdevc -o web\module.js --library-root web --module-root web web\subdir\main.dart
If you look at the compiled module on windows the library name for
web\subdir\main.dart
is justmain
, and on linux/mac it issubdir__main
which is what I would expect given the library root isweb
.The text was updated successfully, but these errors were encountered: