21cc667dca
This adds support for having a final field and an external constructor without error, assuming that the external constructor initializes the final field. This supports the inline class with external members use case. Change-Id: I33b78275e967636ed0697d17f7921e9eee30401b Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/279095 Reviewed-by: Srujan Gaddam <srujzs@google.com> Commit-Queue: Johnni Winther <johnniwinther@google.com> Reviewed-by: Jens Johansen <jensj@google.com>
16 lines
401 B
Dart
16 lines
401 B
Dart
// Copyright (c) 2019, 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 'log.dart';
|
|
|
|
void main() {
|
|
log2('A');
|
|
log3('B');
|
|
log('C');
|
|
console.log('D');
|
|
if (DateTime.now().year == 0) {
|
|
// Avoid executing this branch.
|
|
new Class();
|
|
}
|
|
}
|