Skip to content

Commit

Permalink
Roll Dart SDK 78ce916d82..15a3bf82cb (flutter#10810)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
cbracken committed Aug 9, 2019
1 parent e096f78 commit 03caa67
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DEPS
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ci/licenses_golden/licenses_third_party
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Signature: 8b065bff7ffd2927337a7a8d8453f7b1
Signature: 72ff7af9d28bb2fdd1ca30b84a823cb3

UNUSED LICENSES:

Expand Down
7 changes: 4 additions & 3 deletions web_sdk/flutter_kernel_sdk.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -67,15 +67,16 @@ 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);
await writeComponentToBinary(component, outputPath);

var jsModule = ProgramCompiler(
component,
target.hierarchy,
compilerResult.classHierarchy,
SharedCompilerOptions(moduleName: 'dart_sdk'),
{}).emitModule(component, [], [], {});
var moduleFormats = {
Expand Down

0 comments on commit 03caa67

Please sign in to comment.