blob: 09c7d491e5306dac9fa226def9d885ebe8fc5010 [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 Next, q is executed with this bound to i, the type parameters
/// (if any) of R bound to the actual type arguments V1, ..., Vm and the formal
/// parameter bindings that resulted from the evaluation of the argument list.
/// The result of the evaluation of e is i.
/// @description Checks that arguments of a constructor and instance variables
/// are bound correctly.
/// @author msyabro
import '../../../../Utils/expect.dart';
f(p1) {
Expect.equals(1, p1);
return 0;
}
class A {
A(p1): x = f(p1), y = 2 + 3 {
Expect.equals(1, p1);
Expect.equals(5, y);
Expect.equals(0, x);
Expect.equals(1, z);
Expect.isNull(n);
}
var x;
var y;
var z = 1;
var n;
}
class B {
B.name(p1): x = f(p1), y = 9 / 3 {
Expect.equals(1, p1);
Expect.equals(3, y);
Expect.equals(0, x);
Expect.equals("const string", z);
Expect.isNull(n);
}
var x;
var y;
var z = "const string";
var n;
}
main() {
new A(1);
new B.name(1);
}