blob: 48682e2558a17c7c814b6c2e0a5df6c5dca48092 [file] [log] [blame]
// Copyright (c) 2017, 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 'dart:isolate';
unchangedFunction() => "unchanged";
var unchangedField = "unchanged".toString();
function() => "new value";
var uninitializedField = "new initializer".toString();
var fieldLiteralInitializer = "new initializer";
var initializedField = "new initializer".toString();
var neverReferencedField = "new initializer".toString();
// Not initially finalized.
class C {
function() => "new value";
}
class S {}
class M {
newFunction() => "new value";
}
class MA1 extends S with M {
newFunction2() => "new value";
}
class MA2 = S with M;
class NewClass {
function() => "new value";
}
typedef bool NewTypedef(Object obj);
main2() {
print(function());
print(uninitializedField);
print(initializedField);
print(new C().function());
print(new NewClass().function());
print(new MA1().newFunction());
print(new MA1().newFunction2());
}