dart-sdk/tests/language/implicit_creation/implicit_const_context_prefix_constructor_test.dart
Robert Nystrom 51bc545135 Switch cases are no longer const contexts with patterns.
But there is a new "const expression" pattern syntax that does
introduce a const context, so test that here instead.

Change-Id: Iaf615093c3d2fb32065fa8647bf3663118b0c274
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/285761
Commit-Queue: Bob Nystrom <rnystrom@google.com>
Reviewed-by: Jake Macdonald <jakemac@google.com>
Auto-Submit: Bob Nystrom <rnystrom@google.com>
2023-02-28 01:34:26 +00:00

59 lines
1.5 KiB
Dart

// Copyright (c) 2018, 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.
// SharedOptions=--enable-experiment=patterns,records
import "package:expect/expect.dart";
import "implicit_const_context_prefix_constructor_test.dart" as prefix;
// Test that constructor invocations are constant
// when evaluated in a const context.
class C {
final Object x;
const C(this.x);
// Static const.
static const staticConst = prefix.C(42);
}
// Top-level const.
const topConst = prefix.C(42);
main() {
const c0 = const prefix.C(42); // Explicit const.
// RHS of const local variable.
const c1 = prefix.C(42);
// Inside const expression.
var c2 = (const [prefix.C(42)])[0]; // List element.
var c3 = (const {prefix.C(42): 0}).keys.first; // Map key.
var c4 = (const {0: prefix.C(42)}).values.first; // Map value.
var c5 = (const C(prefix.C(42))).x; // Constructor argument.
Expect.identical(c0, c1);
Expect.identical(c0, c2);
Expect.identical(c0, c3);
Expect.identical(c0, c4);
Expect.identical(c0, c5);
Expect.identical(c0, C.staticConst);
Expect.identical(c0, topConst);
// Switch case parenthesized const expression.
switch (c0) {
case const (prefix.C(42)):
break;
default:
Expect.fail("Didn't match constant");
}
// Annotation argument.
// (Cannot check that it's const, just that it's accepted).
@C(prefix.C(42))
var foo = null;
foo; // avoid "unused" hints.
}