Skip to content

Commit e06db8e

Browse files
author
Dart CI
committed
Version 2.19.0-323.0.dev
Merge bf420ae into dev
2 parents 78eca41 + bf420ae commit e06db8e

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

sdk/lib/core/uri.dart

+3-2
Original file line numberDiff line numberDiff line change
@@ -4325,7 +4325,8 @@ List<Uint8List> _createTables() {
43254325
b = build(pathSeg, path | notSimple);
43264326
setChars(b, pchar, path);
43274327
setChars(b, ".", pathSegDot);
4328-
setChars(b, r"/\", pathSeg | notSimple);
4328+
setChars(b, "/", pathSeg);
4329+
setChars(b, r"\", pathSeg | notSimple);
43294330
setChars(b, "?", query | queryStart);
43304331
setChars(b, "#", fragment | fragmentStart);
43314332

@@ -4345,7 +4346,7 @@ List<Uint8List> _createTables() {
43454346
b = build(path, path | notSimple);
43464347
setChars(b, pchar, path);
43474348
setChars(b, "/", pathSeg);
4348-
setChars(b, r"/\", pathSeg | notSimple);
4349+
setChars(b, r"\", pathSeg | notSimple);
43494350
setChars(b, "?", query | queryStart);
43504351
setChars(b, "#", fragment | fragmentStart);
43514352

sdk/lib/ffi/dynamic_library.dart

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ class DynamicLibrary {
1313
///
1414
/// Any symbol in a library currently loaded with global visibility
1515
/// (including the executable itself) may be resolved through this library.
16-
///
17-
/// This feature is not available on Windows.
1816
external factory DynamicLibrary.process();
1917

2018
/// Creates a [DynamicLibrary] containing all the symbols of the running

tools/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ CHANNEL dev
2727
MAJOR 2
2828
MINOR 19
2929
PATCH 0
30-
PRERELEASE 322
30+
PRERELEASE 323
3131
PRERELEASE_PATCH 0

0 commit comments

Comments
 (0)