mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Roll Dart SDK 78ce916d82..15a3bf82cb (flutter/engine#10810)
15a3bf82cb Add defined() guard for checkout_llvm build flag d5d00c847a Create ExtensionMemberResolver instance in ResolverVisitor. 9ec8d9ff25 [ddc] Merge modular/issue37523 test into modular/nested_constants test ea313da021 Rework the resolution result ab55923918 [dartdevc] ddb fix for d8 77f545bbc4 [vm/ffi] Fix instantiation and garbage collection of NativeType objects b0d079a96b Set context type for extension override receiver. dc2c942c7d [vm/bytecode] Avoid adding all ICData objects from constant pool 804a338b5e Change recordScopeDependencies() to return true on type parameter of strict FunctionType. 0c727420c3 Stop reporting undefined method when there are ambiguous extension methods 6d2902576b Emit a server.error event if we fail to start the completion model isolate 51f4574e50 Reland "[vm/ffi] Support structs on 32bit architectures" 621b96f97b Migration: begin adding infrastructure for reporting unsatisfiable substitutions. 19654f30d0 [cfe+vm+ddc] Return ClassHierarchy and CoreTypes together with Component 573789f7f1 [cfe] Insert default super initializer when outlining const constructor
This commit is contained in:
parent
bc49804531
commit
5020bdf02b
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': '78ce916d8219457c872183ce89c594b045891b48',
|
||||
'dart_revision': '15a3bf82cbd67c2d73e9f6a46ec6a3e32d8229eb',
|
||||
|
||||
# WARNING: DO NOT EDIT MANUALLY
|
||||
# The lines between blank lines above and below are generated by a script. See create_updated_flutter_deps.py
|
||||
|
||||
@ -18,7 +18,7 @@ import 'package:dev_compiler/src/kernel/compiler.dart';
|
||||
import 'package:front_end/src/api_unstable/ddc.dart'
|
||||
show
|
||||
CompilerOptions,
|
||||
kernelForComponent,
|
||||
kernelForModule,
|
||||
DiagnosticMessage,
|
||||
printDiagnosticMessage,
|
||||
Severity;
|
||||
@ -67,7 +67,8 @@ Future main(List<String> args) async {
|
||||
..environmentDefines = {};
|
||||
|
||||
var inputs = target.extraRequiredLibraries.map(Uri.parse).toList();
|
||||
var component = await kernelForComponent(inputs, options);
|
||||
var compilerResult = await kernelForModule(inputs, options);
|
||||
var component = compilerResult.component;
|
||||
|
||||
var outputDir = path.dirname(outputPath);
|
||||
await Directory(outputDir).create(recursive: true);
|
||||
@ -75,7 +76,7 @@ Future main(List<String> args) async {
|
||||
|
||||
var jsModule = ProgramCompiler(
|
||||
component,
|
||||
target.hierarchy,
|
||||
compilerResult.classHierarchy,
|
||||
SharedCompilerOptions(moduleName: 'dart_sdk'),
|
||||
{}).emitModule(component, [], [], {});
|
||||
var moduleFormats = {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user