blob: 6259f13f930f6e85107e51e668b05fb60a62825b [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.
import 'package:expect/expect.dart';
import "package:async_helper/async_helper.dart";
import '../compiler_helper.dart';
const String TEST1 = r"""
main() {
var a = 52;
var f = () => a + 87;
f();
}
""";
const String TEST2 = r"""
main() {
var a = 52;
var g = () { a = 48; };
var f = () => a + 87;
f();
g();
}
""";
const String TEST3 = r"""
main() {
var a = 52;
var g = () { a = 'foo'; };
var f = () => a + 87;
f();
g();
}
""";
main() {
runTests({bool useKernel}) async {
// Test that we know the type of captured, non-mutated variables.
String generated1 = await compileAll(TEST1, useKernel: useKernel);
Expect.isTrue(generated1.contains('+ 87'));
// Test that we know the type of captured, mutated variables.
String generated2 = await compileAll(TEST2, useKernel: useKernel);
Expect.isTrue(generated2.contains('+ 87'));
// Test that we know when types of a captured, mutated variable
// conflict.
String generated3 = await compileAll(TEST3, useKernel: useKernel);
Expect.isFalse(generated3.contains('+ 87'));
}
asyncTest(() async {
print('--test from ast---------------------------------------------------');
await runTests(useKernel: false);
print('--test from kernel------------------------------------------------');
await runTests(useKernel: true);
});
}