Files
sdk/tests/language/unsorted/cast_test.dart
T
Robert Nystrom 5bb9e922db Opt multitests out of formatting in language/.
The new formatter supports opting a region of code out from being
formatted. I'm applying this marker to all of the multitests since
those tests are often very sensitive to formatting and easily broken.
This way, anyone touching a multitest (including me when I reformat
the tests) doesn't have to remember to not run the formatter on it.

Unfortunately, this doesn't opt out 100# of the multitests. There are a
handful of multitests that also contain "@dart=" comments and are thus
formatted using the old style where the "// dart format off" marker has
no effect. For those, we'll have to still be careful to not accidentally
format them.

Change-Id: I257d0ee1eb44eee57047be06b8520f0ccc7b56d3
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/396162
Auto-Submit: Bob Nystrom <rnystrom@google.com>
Commit-Queue: Erik Ernst <eernst@google.com>
Reviewed-by: Erik Ernst <eernst@google.com>
2024-11-21 10:49:44 +00:00

81 lines
2.1 KiB
Dart

// Copyright (c) 2012, 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.
// Dart test program for constructors and initializers.
// Formatting can break multitests, so don't format them.
// dart format off
import "package:expect/expect.dart";
// Test 'expression as Type' casts.
class C {
final int foo = 42;
}
class D extends C {
final int bar = 37;
}
Object createC() => new C();
Object createD() => new D();
Object? getNull() => null;
Object createList() => <int>[2];
Object createInt() => 87;
Object createString() => "a string";
main() {
Object oc = createC();
Object od = createD();
Object? on = getNull();
Object ol = createList();
Object oi = createInt();
Object os = createString();
Expect.equals(42, (oc as C).foo);
Expect.equals(42, (od as C).foo);
Expect.equals(42, (od as D).foo);
Expect.equals(37, (od as D).bar);
Expect.equals(37, ((od as C) as D).bar);
(oc as D).foo; // //# 01: runtime error
(on as D?).toString();
(on as D).foo; // //# 02: runtime error
(on as C).foo; // //# 03: runtime error
// Reassign to cancel out the type promotion from the previous "as".
oc = oc as dynamic;
od = od as dynamic;
oc.foo; // //# 04: compile-time error
od.foo; // //# 05: compile-time error
(on as Object?).toString();
(oc as Object).toString();
(od as Object).toString();
(on as dynamic).toString();
(on as dynamic).foo; // //# 07: runtime error
(oc as dynamic).foo;
(od as dynamic).foo;
(oc as dynamic).bar; // //# 08: runtime error
(od as dynamic).bar;
C c = oc as C;
c = od as C;
c = oc;
D d = od as D;
d = oc as D; // //# 10: runtime error
d = od;
(ol as List)[0];
(ol as List<int>)[0];
(ol as dynamic)[0];
(ol as String).length; // //# 12: runtime error
int x = (ol as List<int>)[0];
(ol as List<int>)[0] = (oi as int);
(os as String).length;
(os as dynamic).length;
(oi as String).length; // //# 13: runtime error
(os as List).length; // //# 14: runtime error
(oi as int) + 2;
(oi as List).length; // //# 15: runtime error
}