Roll flutter engine (#12307)

* Roll engine

* Pick up updated engine with analyzer fix

* Add new typeArguments override

* Update engine dep

* Up dartdoc version to fix name resolution issues
This commit is contained in:
Alexander Aprelev 2017-10-02 15:28:09 -07:00 committed by GitHub
parent 18f0d3aef7
commit f6fe8dc7e3
3 changed files with 4 additions and 2 deletions

View File

@ -1 +1 @@
e3404b81a53ba3180c7623a6f2190ebb28518f30
f97e974e8cd58da75c699295384cd439a7369b13

View File

@ -10,7 +10,7 @@ set -e
bin/flutter --version
# Install dartdoc.
bin/cache/dart-sdk/bin/pub global activate dartdoc 0.13.0+1
bin/cache/dart-sdk/bin/pub global activate dartdoc 0.13.0+3
# This script generates a unified doc set, and creates
# a custom index.html, placing everything into dev/docs/doc.

View File

@ -132,6 +132,8 @@ class _MethodCall implements Invocation {
Map<Symbol, dynamic> get namedArguments => <Symbol, dynamic>{};
@override
List<dynamic> get positionalArguments => _arguments;
@override
List<Type> get typeArguments => const <Type>[];
}
String _valueName(Object value) {