mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Roll src/third_party/dart 35382f9b14..05c28c6115 (#11702)
* Roll src/third_party/dart 35382f9b14..05c28c6115 dart-lang/sdk@05c28c6115 Reland "Scaffolding for dart:wasm" dart-lang/sdk@d57a8f7451 [vm/bytecode] Remove DebugCheck in synthetic non-local transfer (no source pos). dart-lang/sdk@b565c8c20f Don't serialize not serializable constant variable initializers. dart-lang/sdk@ce12a2722d Migration: handle named parameters in _substituteFunctionAfterFormals. dart-lang/sdk@a290271dea [vm/bytecode] Throw should be 'debug checked', but not ReThrow. dart-lang/sdk@63133a2a8c [cfe] Handle extension instance method tearoff dart-lang/sdk@a147d4e8d2 [cfe] Handle simple use of extension instance members dart-lang/sdk@e9fdeb2db8 Migration: add support for creating instances without supplying type arguments. dart-lang/sdk@66e349da9c Migration: Clean up substitution logic in getOrComputeElementType dart-lang/sdk@e9a44ba6a8 fix extension instance field error dart-lang/sdk@15a7b57d8e split endFields into endClass/Mixin/ExtensionFields events dart-lang/sdk@ed1b4ffba1 Add tests of extensions of mixins dart-lang/sdk@ef36f1ba0d [vm/fuzzer] Reduce limit on methods and classes dart-lang/sdk@7b17602c74 [vm/bytecode] Include function name into source fingerprints dart-lang/sdk@851701d2a4 add BREAK suggestions to switch cases dart-lang/sdk@57f7941eef [cfe] Remove 'functionNestingLevel' for VariableDeclaration.forValue
This commit is contained in:
parent
37c5510c07
commit
74a3c73e3c
2
DEPS
2
DEPS
@ -34,7 +34,7 @@ vars = {
|
||||
# Dart is: https://github.com/dart-lang/sdk/blob/master/DEPS.
|
||||
# You can use //tools/dart/create_updated_flutter_deps.py to produce
|
||||
# updated revision list of existing dependencies.
|
||||
'dart_revision': '35382f9b144b545c632b00d797139c9a96485edb',
|
||||
'dart_revision': '05c28c6115bbc438f6bbc14078eaf895679b6493',
|
||||
|
||||
# WARNING: DO NOT EDIT MANUALLY
|
||||
# The lines between blank lines above and below are generated by a script. See create_updated_flutter_deps.py
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
Signature: 742116b952b7acf5cf98fe3e4d537e83
|
||||
Signature: 29342bb1ee5e5375db5f5c9f613ac7a5
|
||||
|
||||
UNUSED LICENSES:
|
||||
|
||||
@ -7431,6 +7431,8 @@ FILE: ../../../third_party/dart/runtime/lib/ffi_dynamic_library.cc
|
||||
FILE: ../../../third_party/dart/runtime/lib/ffi_dynamic_library_patch.dart
|
||||
FILE: ../../../third_party/dart/runtime/lib/ffi_native_type_patch.dart
|
||||
FILE: ../../../third_party/dart/runtime/lib/ffi_patch.dart
|
||||
FILE: ../../../third_party/dart/runtime/lib/wasm.cc
|
||||
FILE: ../../../third_party/dart/runtime/lib/wasm_patch.dart
|
||||
FILE: ../../../third_party/dart/runtime/llvm_codegen/bit/bit.h
|
||||
FILE: ../../../third_party/dart/runtime/llvm_codegen/bit/main.cc
|
||||
FILE: ../../../third_party/dart/runtime/llvm_codegen/bit/test.cc
|
||||
@ -7544,6 +7546,7 @@ FILE: ../../../third_party/dart/sdk/lib/ffi/dynamic_library.dart
|
||||
FILE: ../../../third_party/dart/sdk/lib/ffi/ffi.dart
|
||||
FILE: ../../../third_party/dart/sdk/lib/ffi/native_type.dart
|
||||
FILE: ../../../third_party/dart/sdk/lib/ffi/struct.dart
|
||||
FILE: ../../../third_party/dart/sdk/lib/wasm/wasm.dart
|
||||
----------------------------------------------------------------------------------------------------
|
||||
Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
|
||||
for details. All rights reserved.
|
||||
|
||||
@ -72,6 +72,14 @@
|
||||
"nativewrappers": {
|
||||
"uri": "../../../third_party/dart/sdk/lib/html/dartium/nativewrappers.dart"
|
||||
},
|
||||
"mirrors": {
|
||||
"patches": [
|
||||
"../../../third_party/dart/runtime/lib/mirrors_patch.dart",
|
||||
"../../../third_party/dart/runtime/lib/mirrors_impl.dart",
|
||||
"../../../third_party/dart/runtime/lib/mirror_reference.dart"
|
||||
],
|
||||
"uri": "../../../third_party/dart/sdk/lib/mirrors/mirrors.dart"
|
||||
},
|
||||
"developer": {
|
||||
"patches": [
|
||||
"../../../third_party/dart/runtime/lib/developer.dart",
|
||||
@ -87,17 +95,15 @@
|
||||
],
|
||||
"uri": "../../../third_party/dart/sdk/lib/isolate/isolate.dart"
|
||||
},
|
||||
"mirrors": {
|
||||
"patches": [
|
||||
"../../../third_party/dart/runtime/lib/mirrors_patch.dart",
|
||||
"../../../third_party/dart/runtime/lib/mirrors_impl.dart",
|
||||
"../../../third_party/dart/runtime/lib/mirror_reference.dart"
|
||||
],
|
||||
"uri": "../../../third_party/dart/sdk/lib/mirrors/mirrors.dart"
|
||||
},
|
||||
"_vmservice": {
|
||||
"uri": "../../../third_party/dart/sdk/lib/vmservice/vmservice.dart"
|
||||
},
|
||||
"wasm": {
|
||||
"patches": [
|
||||
"../../../third_party/dart/runtime/lib/wasm_patch.dart"
|
||||
],
|
||||
"uri": "../../../third_party/dart/sdk/lib/wasm/wasm.dart"
|
||||
},
|
||||
"io": {
|
||||
"patches": [
|
||||
"../../../third_party/dart/runtime/bin/common_patch.dart",
|
||||
|
||||
@ -91,6 +91,11 @@ flutter:
|
||||
- "../../../third_party/dart/runtime/lib/ffi_native_type_patch.dart"
|
||||
- "../../../third_party/dart/runtime/lib/ffi_patch.dart"
|
||||
|
||||
wasm:
|
||||
uri: "../../../third_party/dart/sdk/lib/wasm/wasm.dart"
|
||||
patches:
|
||||
- "../../../third_party/dart/runtime/lib/wasm_patch.dart"
|
||||
|
||||
_http:
|
||||
uri: "../../../third_party/dart/sdk/lib/_http/http.dart"
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"comment:0": "NOTE: THIS FILE IS GENERATED. DO NOT EDIT.",
|
||||
"comment:1": "Instead modify 'topaz/runtime/dart_runner/kernel/libraries.yaml' and follow the instructions therein.",
|
||||
"comment:1": "Instead modify 'shell/platform/fuchsia/dart_runner/kernel/libraries.yaml' and follow the instructions therein.",
|
||||
"dart_runner": {
|
||||
"libraries": {
|
||||
"_builtin": {
|
||||
@ -75,6 +75,14 @@
|
||||
"nativewrappers": {
|
||||
"uri": "../../../../../../third_party/dart/sdk/lib/html/dartium/nativewrappers.dart"
|
||||
},
|
||||
"mirrors": {
|
||||
"patches": [
|
||||
"../../../../../../third_party/dart/runtime/lib/mirrors_patch.dart",
|
||||
"../../../../../../third_party/dart/runtime/lib/mirrors_impl.dart",
|
||||
"../../../../../../third_party/dart/runtime/lib/mirror_reference.dart"
|
||||
],
|
||||
"uri": "../../../../../../third_party/dart/sdk/lib/mirrors/mirrors.dart"
|
||||
},
|
||||
"developer": {
|
||||
"patches": [
|
||||
"../../../../../../third_party/dart/runtime/lib/developer.dart",
|
||||
@ -90,17 +98,15 @@
|
||||
],
|
||||
"uri": "../../../../../../third_party/dart/sdk/lib/isolate/isolate.dart"
|
||||
},
|
||||
"mirrors": {
|
||||
"patches": [
|
||||
"../../../../../../third_party/dart/runtime/lib/mirrors_patch.dart",
|
||||
"../../../../../../third_party/dart/runtime/lib/mirrors_impl.dart",
|
||||
"../../../../../../third_party/dart/runtime/lib/mirror_reference.dart"
|
||||
],
|
||||
"uri": "../../../../../../third_party/dart/sdk/lib/mirrors/mirrors.dart"
|
||||
},
|
||||
"_vmservice": {
|
||||
"uri": "../../../../../../third_party/dart/sdk/lib/vmservice/vmservice.dart"
|
||||
},
|
||||
"wasm": {
|
||||
"patches": [
|
||||
"../../../../../../third_party/dart/runtime/lib/wasm_patch.dart"
|
||||
],
|
||||
"uri": "../../../../../../third_party/dart/sdk/lib/wasm/wasm.dart"
|
||||
},
|
||||
"io": {
|
||||
"patches": [
|
||||
"../../../../../../third_party/dart/runtime/bin/common_patch.dart",
|
||||
@ -155,4 +161,4 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -91,6 +91,11 @@ dart_runner:
|
||||
- "../../../../../../third_party/dart/runtime/lib/ffi_native_type_patch.dart"
|
||||
- "../../../../../../third_party/dart/runtime/lib/ffi_patch.dart"
|
||||
|
||||
wasm:
|
||||
uri: "../../../../../../third_party/dart/sdk/lib/wasm/wasm.dart"
|
||||
patches:
|
||||
- "../../../../../../third_party/dart/runtime/lib/wasm_patch.dart"
|
||||
|
||||
_http:
|
||||
uri: "../../../../../../third_party/dart/sdk/lib/_http/http.dart"
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"comment:0": "NOTE: THIS FILE IS GENERATED. DO NOT EDIT.",
|
||||
"comment:1": "Instead modify 'kernel/libraries.yaml' and follow the instructions therein.",
|
||||
"comment:1": "Instead modify 'shell/platform/fuchsia/flutter/kernel/libraries.yaml' and follow the instructions therein.",
|
||||
"flutter_runner": {
|
||||
"libraries": {
|
||||
"_builtin": {
|
||||
@ -75,6 +75,14 @@
|
||||
"nativewrappers": {
|
||||
"uri": "../../../../../../third_party/dart/sdk/lib/html/dartium/nativewrappers.dart"
|
||||
},
|
||||
"mirrors": {
|
||||
"patches": [
|
||||
"../../../../../../third_party/dart/runtime/lib/mirrors_patch.dart",
|
||||
"../../../../../../third_party/dart/runtime/lib/mirrors_impl.dart",
|
||||
"../../../../../../third_party/dart/runtime/lib/mirror_reference.dart"
|
||||
],
|
||||
"uri": "../../../../../../third_party/dart/sdk/lib/mirrors/mirrors.dart"
|
||||
},
|
||||
"developer": {
|
||||
"patches": [
|
||||
"../../../../../../third_party/dart/runtime/lib/developer.dart",
|
||||
@ -90,17 +98,15 @@
|
||||
],
|
||||
"uri": "../../../../../../third_party/dart/sdk/lib/isolate/isolate.dart"
|
||||
},
|
||||
"mirrors": {
|
||||
"patches": [
|
||||
"../../../../../../third_party/dart/runtime/lib/mirrors_patch.dart",
|
||||
"../../../../../../third_party/dart/runtime/lib/mirrors_impl.dart",
|
||||
"../../../../../../third_party/dart/runtime/lib/mirror_reference.dart"
|
||||
],
|
||||
"uri": "../../../../../../third_party/dart/sdk/lib/mirrors/mirrors.dart"
|
||||
},
|
||||
"_vmservice": {
|
||||
"uri": "../../../../../../third_party/dart/sdk/lib/vmservice/vmservice.dart"
|
||||
},
|
||||
"wasm": {
|
||||
"patches": [
|
||||
"../../../../../../third_party/dart/runtime/lib/wasm_patch.dart"
|
||||
],
|
||||
"uri": "../../../../../../third_party/dart/sdk/lib/wasm/wasm.dart"
|
||||
},
|
||||
"io": {
|
||||
"patches": [
|
||||
"../../../../../../third_party/dart/runtime/bin/common_patch.dart",
|
||||
@ -158,4 +164,4 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -91,6 +91,11 @@ flutter_runner:
|
||||
- "../../../../../../third_party/dart/runtime/lib/ffi_native_type_patch.dart"
|
||||
- "../../../../../../third_party/dart/runtime/lib/ffi_patch.dart"
|
||||
|
||||
wasm:
|
||||
uri: "../../../../../../third_party/dart/sdk/lib/wasm/wasm.dart"
|
||||
patches:
|
||||
- "../../../../../../third_party/dart/runtime/lib/wasm_patch.dart"
|
||||
|
||||
_http:
|
||||
uri: "../../../../../../third_party/dart/sdk/lib/_http/http.dart"
|
||||
|
||||
|
||||
@ -5,6 +5,7 @@ embedded_libs:
|
||||
"dart:core": "core/core.dart"
|
||||
"dart:developer": "developer/developer.dart"
|
||||
"dart:ffi": "ffi/ffi.dart"
|
||||
"dart:wasm": "wasm/wasm.dart"
|
||||
"dart:io": "io/io.dart"
|
||||
"dart:isolate": "isolate/isolate.dart"
|
||||
"dart:math": "math/math.dart"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user