4084c4cc24
Define a "Version" class in kernel that allows easy comparison between versions (e.g. a < b, a >= b etc). Use this Version class in CFE. Change-Id: I2f382e7bb3c2083258743b9b66a909a88d575dbc Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/144283 Reviewed-by: Johnni Winther <johnniwinther@google.com> Commit-Queue: Jens Johansen <jensj@google.com>
13 lines
471 B
Dart
13 lines
471 B
Dart
// Copyright (c) 2020, 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.
|
|
|
|
// NOTE: THIS FILE IS GENERATED. DO NOT EDIT.
|
|
//
|
|
// Instead modify 'tools/experimental_features.yaml' and run
|
|
// 'pkg/front_end/tool/fasta generate-experimental-flags' to update.
|
|
|
|
import "ast.dart";
|
|
|
|
Version defaultLanguageVersion = const Version(2, 9);
|