| Index: lib/compiler/implementation/js_backend/emitter.dart
|
| diff --git a/lib/compiler/implementation/js_backend/emitter.dart b/lib/compiler/implementation/js_backend/emitter.dart
|
| index 0f64e081763a87415a4b77a3064801fa1bffefa7..38a0484cb1416322ea37efad5eb6de9d3f502bd6 100644
|
| --- a/lib/compiler/implementation/js_backend/emitter.dart
|
| +++ b/lib/compiler/implementation/js_backend/emitter.dart
|
| @@ -339,7 +339,7 @@ function(collectedClasses) {
|
|
|
| int count = 0;
|
| int indexOfLastOptionalArgumentInParameters = positionalArgumentCount - 1;
|
| - TreeElements elements =
|
| + TreeElements elements =
|
| compiler.enqueuer.resolution.getCachedElements(member);
|
|
|
| parameters.forEachParameter((Element element) {
|
| @@ -451,7 +451,7 @@ function(collectedClasses) {
|
| }
|
|
|
| String generateCheckedSetter(Element member, String fieldName) {
|
| - Type type = member.computeType(compiler);
|
| + DartType type = member.computeType(compiler);
|
| if (type.element.isTypeVariable()
|
| || type.element == compiler.dynamicClass
|
| || type.element == compiler.objectClass) {
|
|
|