Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 8517ab3

Browse files
Manual roll of Dart SDK from a677378ae254 to 0471164827b9 (#49054)
Includes an update for a deprecated FFI API (see https://dart.googlesource.com/sdk/+/efb60eac5999e47853505f2e3fc3eaf19f56f495)
1 parent 47e5480 commit 8517ab3

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

DEPS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ vars = {
6666
# Dart is: https://github.com/dart-lang/sdk/blob/main/DEPS
6767
# You can use //tools/dart/create_updated_flutter_deps.py to produce
6868
# updated revision list of existing dependencies.
69-
'dart_revision': 'a677378ae25424f8e74b2f750e879458e9a17488',
69+
'dart_revision': '0471164827b9a50dc03ac5988302fee7459365ca',
7070

7171
# WARNING: DO NOT EDIT MANUALLY
7272
# The lines between blank lines above and below are generated by a script. See create_updated_flutter_deps.py
@@ -425,7 +425,7 @@ deps = {
425425
Var('dart_git') + '/mockito.git@57a7c820ffae61e3df0dbc279ad98b92751175f0',
426426

427427
'src/third_party/dart/third_party/pkg/native':
428-
Var('dart_git') + '/native.git@5aeab2915167fd24ccb1241c07516b388fda2b9b',
428+
Var('dart_git') + '/native.git@b668ca94f551fcebdeb3ce9f822170facced55ae',
429429

430430
'src/third_party/dart/third_party/pkg/package_config':
431431
Var('dart_git') + '/package_config.git@33dd24659147bd7ed2fa87aeacc52d199be766b4',

ci/licenses_golden/excluded_files

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2230,7 +2230,6 @@
22302230
../../../third_party/dart/.gn
22312231
../../../third_party/dart/.mailmap
22322232
../../../third_party/dart/.style.yapf
2233-
../../../third_party/dart/.vpython
22342233
../../../third_party/dart/AUTHORS
22352234
../../../third_party/dart/CHANGELOG.md
22362235
../../../third_party/dart/CONTRIBUTING.md

ci/licenses_golden/licenses_dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Signature: 9566e23501be49ccdb4d0e710a9b74e7
1+
Signature: 08acc7ac20b6971314186d5984ee5194
22

33
====================================================================================================
44
LIBRARY: dart

tools/path_ops/dart/lib/path_ops.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ class Path implements PathProxy {
203203
_updatePathData();
204204
final int count = _pathData!.ref.verb_count;
205205
return List<PathVerb>.generate(count, (int index) {
206-
return PathVerb.values[_pathData!.ref.verbs.elementAt(index).value];
206+
return PathVerb.values[_pathData!.ref.verbs[index]];
207207
}, growable: false);
208208
}
209209

0 commit comments

Comments
 (0)