blob: 2198434e8813c24e6dacfafb0ac9d65a125fc8a3 [file] [log] [blame]
// Copyright (c) 2011, 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.
/**
* @assertion An if statement of the form if (b) s1 else s2.
* If:
* • b shows that a variable v has type T .
* • v is not potentially mutated in s1 or within a closure.
* • If the variable v is accessed by a closure in s1 then the variable v is
* not potentially mutated anywhere in the scope of v.
* Then the type of v is known to be T in s1.
* @description Checks that if b shows that v has type T and v is not
* potentially mutated anywhere in the scope of v, then the type of v is
* known to be T in s1, regardless of whether there are closures capturing v.
* Case with closures.
* @static-clean
* @author ilya
*/
class C {}
class D extends C {
f() {}
}
// formal parameter
f1(C x) {
closure () => x;
if (x is D) {
closure();
(() => [x]) ();
x.f();
} else {
closure();
(() => [x]) ();
}
}
// local variable
f2(C y) {
C x = y;
closure () => x;
if (x is D) {
closure();
(() => [x]) ();
x.f();
} else {
closure();
(() => [x]) ();
}
}
main() {
f1(new D());
f2(new D());
}