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

Commit 8be2aca

Browse files
a-sivabkonyi
authored andcommitted
Roll src/third_party/dart 1bd36d6..674fd0e (48 commits) #8152
674fd0e [vm runtime] Dynamically disable dual mapping of code on some platforms 0bd674c [VM-Runtime] set environment when creating detached process 578fdb0 Call becomeMap/becomeSet() in AstCloner. 382cd59 Update completion target tests for new map syntax 1db6647 Revert "Copy abi dills in create_sdk build rule" a39833d Reland "Reland "[VM runtime] Dual mapping of executable pages."" 49a0502 Copy abi dills in create_sdk build rule 23eb57c Revert "[vm/ffi] Support Windows 64 bit" 22c2c7f Sort declarations in build_mode.dart e2b5559 [infra] Use gclient.py to apply patches to bypass update_depot_tools f4b524c [vm] Extract reading of parameter covariance attributes 16e40ce Generate a diagnostic when a set or map literal is ambiguous b89d083 [infra] Only move coredump files on shards 7f812de [vm/ffi] Support Windows 64 bit 469da72 [vm] Put covariance attributes into Field flags 0908749 update hasFix lookup table bb7b5fc add missing fix tests 48a5c38 assist to convert to absolute imports b3927f6 [gardening] Mark tests that crash as crashing 2d6ddf2 Remove unnecessary override from PartialResolverVisitor ba3b9b3 Sort static_type_analyzer_test.dart 1edc6d4 [infra] Fix approve_results not erroring properly if tryjobs lack results. 1a196d4 [VM/AOT] Execute catch-entry moves in parallel (our AOT doesn't generate non-cyclic moves) 6a2aa92 Support pragma annotations through ir constants d3d0770 [VM/FrontendServer] Add 3head patch to frontend server after breaking API changes 016e317 Default parameters, more metadata, import dart:core. 853d388 [VM/AOT] Fixes incorrect deserialization of catch entry moves 3cf7d6a [tests] Changing expected cast errors to type errors for collections tests b87c44d Generate diagnostic for non-bool conditions in if elements 74395d9 Comment out test_import_short_absolute that fails on Windows. 7c15448 [vm] Decouple flow graph building of implicit getters and setters from kernel reading 57f4da3 [vm, gc] The mutator's TLAB and the interpreter's lookup cache must be visited even if the mutator is unscheduled. 15842d4 Build more import scopes, support for enums. f2029f5 Fix type inference of map/set literals when the context is a type parameter. 11b9481 [vm/frontend] Fix frontend_server_test on Windows. bfb30bf Fix a bug in the ConstantVerifier so that conditional elements are lazily verified ed1f956 Fix the abi dills download script 8f03ae0 [infra] Add --list-configurations option to test.dart. 9faca2f [vm] Document lifetime requirements of arguments to Dart_TimelineEvent. 295ea59 [vm] Give functions compiled through Dart_LoadCompilationTrace a non-zero usage counter. def0b21 [infra] Fix test.dart saying untested configurations don't exist. abd1854 Fix recording of map/literal context type. a8b3461 New summaries work snapshot. 9e7627b Re-land "Eliminate uses of old AST node types from pkg/analyzer/lib/src/summary" 210361a Move IgnoreInfo out of the task model code base 440b4cd Insert implicit casts when setting interface targets 567d552 [infra] Add versionchecker and debianpackage to test matrix 576c4c7 [CFE] Always clone subexpressions of unevaluated constants.
1 parent 8b1a299 commit 8be2aca

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

DEPS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ vars = {
3131
# Dart is: https://github.com/dart-lang/sdk/blob/master/DEPS.
3232
# You can use //tools/dart/create_updated_flutter_deps.py to produce
3333
# updated revision list of existing dependencies.
34-
'dart_revision': '674fd0e060a33deeedbc2f8fae7c32c7e3f0d8d5',
34+
'dart_revision': '1bd36d694dba00d92651fcd2340e91d5a74efb03',
3535

3636
# WARNING: DO NOT EDIT MANUALLY
3737
# The lines between blank lines above and below are generated by a script. See create_updated_flutter_deps.py

ci/licenses_golden/licenses_third_party

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Signature: 61c85403b45c4241c745ac885c7da2ce
1+
Signature: b7183327d115ae031ff3f9997d96a04e
22

33
UNUSED LICENSES:
44

@@ -5708,6 +5708,7 @@ FILE: ../../../third_party/dart/runtime/lib/ffi_native_type_patch.dart
57085708
FILE: ../../../third_party/dart/runtime/lib/ffi_patch.dart
57095709
FILE: ../../../third_party/dart/runtime/tools/graphexplorer/graphexplorer.html
57105710
FILE: ../../../third_party/dart/runtime/tools/graphexplorer/graphexplorer.js
5711+
FILE: ../../../third_party/dart/runtime/vm/catch_entry_moves_test.cc
57115712
FILE: ../../../third_party/dart/runtime/vm/class_id.h
57125713
FILE: ../../../third_party/dart/runtime/vm/code_entry_kind.h
57135714
FILE: ../../../third_party/dart/runtime/vm/compiler/asm_intrinsifier.cc

frontend_server/lib/server.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ class _FlutterFrontendCompiler implements frontend.CompilerInterface{
3232
}
3333

3434
@override
35-
Future<Null> recompileDelta({String filename}) async {
36-
return _compiler.recompileDelta(filename: filename);
35+
Future<Null> recompileDelta({String entryPoint}) async {
36+
return _compiler.recompileDelta(entryPoint: entryPoint);
3737
}
3838

3939
@override

sky/packages/sky_engine/LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2808,6 +2808,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28082808
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28092809
--------------------------------------------------------------------------------
28102810
boringssl
2811+
engine
28112812
etc1
28122813
observatory_pub_packages
28132814
skia

0 commit comments

Comments
 (0)