blob: c68ce6209792596243bf0f347757f0f0299782d9 [file] [log] [blame]
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// We used to always nullify the element type of a list we are tracing in
// the presence of a fixed length list constructor call.
import 'package:expect/expect.dart';
import "package:async_helper/async_helper.dart";
import 'package:compiler/src/types/types.dart' show ContainerTypeMask;
import 'compiler_helper.dart';
import 'type_mask_test_helper.dart';
const String TEST = r'''
var myList = [];
var otherList = ['foo', 42];
main() {
var a = otherList[0];
a += 54;
myList.add(a);
}
''';
void main() {
Uri uri = new Uri(scheme: 'source');
var compiler = compilerFor(TEST, uri);
asyncTest(() => compiler.run(uri).then((_) {
var typesInferrer = compiler.globalInference.typesInferrerInternal;
var closedWorld = typesInferrer.closedWorld;
checkType(String name, type) {
MemberElement element = findElement(compiler, name);
ContainerTypeMask mask = typesInferrer.getTypeOfMember(element);
Expect.equals(type, simplify(mask.elementType, closedWorld), name);
}
var interceptorType =
typesInferrer.closedWorld.commonMasks.interceptorType;
checkType('myList', interceptorType);
}));
}