Files
sdk/tests/web/compile_time_constant4_test.dart
Robert Nystrom d7ed15658a Opt multitests out of formatting in web/.
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.

Change-Id: I3d6346d31581772dc8e1701594bf9d919f28db7d
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/396104
Commit-Queue: Bob Nystrom <rnystrom@google.com>
Reviewed-by: Srujan Gaddam <srujzs@google.com>
Reviewed-by: Nate Biggs <natebiggs@google.com>
Commit-Queue: Srujan Gaddam <srujzs@google.com>
Auto-Submit: Bob Nystrom <rnystrom@google.com>
2024-11-19 00:59:10 +00:00

48 lines
956 B
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.
// Formatting can break multitests, so don't format them.
// dart format off
import "package:expect/expect.dart";
const x = "foo";
const y = "foo";
const g1 = x + "bar";
const g2 = x
+ null // //# 01: compile-time error
;
const g3 = x
+ 499 // //# 02: compile-time error
;
const g4 = x
+ 3.3 // //# 03: compile-time error
;
const g5 = x
+ true // //# 04: compile-time error
;
const g6 = x
+ false // //# 05: compile-time error
;
const g7 = "foo"
+ x[0] // //# 06: compile-time error
;
const g8 = 1 + x.length;
const g9 = x == y;
use(x) => x;
main() {
Expect.equals("foobar", g1);
Expect.isTrue(g9);
use(g1);
use(g2);
use(g3);
use(g4);
use(g5);
use(g6);
use(g7);
use(g8);
}