blob: 074c0eead2c5bbfa8e87f0a1be774460ef800992 [file]
// Copyright (c) 2023, 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.
/// @assertion If-case statement
/// 1. Evaluate the expression producing v.
/// 2. Match the pattern in the guardedPattern against v.
/// 3. If the match succeeds:
/// i. If there is a guard clause:
/// a. Evaluate it. If it does not evaluate to a bool, throw a runtime error
/// b. If the guard evaluates to true, execute the then statement.
/// c. Else, execute the else statement if there is one.
/// ii. Else there is no guard clause. Execute the then statement.
/// 4. Else the match failed. Execute the else statement if there is one.
///
/// @description Check that it is a runtime error if a guard clause doesn't
/// evaluate to bool. If the guard clause does evaluate to bool then there is no
/// runtime error
/// @author sgrekhov22@gmail.com
import "../../Utils/expect.dart";
import "patterns_lib.dart";
String log = "";
dynamic guard(Object? v) {
log += "guard($v);";
return v;
}
void logger(String s) {
log += s;
}
const unit4 = const Unit(4, logger);
main() {
Expect.throws(() {
if (Square(2, logger) case Square(area: unit4) when guard(42)) {
log += "statement;";
} else {
log += "else;";
}
});
Expect.equals("Square.area:(4==4);guard(42);", log);
log = "";
Expect.throws(() {
if (Square(2, logger) case Square(area: unit4) when guard(null)) {
log += "statement;";
} else {
log += "else;";
}
});
Expect.equals("Square.area:(4==4);guard(null);", log);
log = "";
if (Square(2, logger) case Square(area: unit4) when guard(false)) {
log += "statement;";
}
Expect.equals("Square.area:(4==4);guard(false);", log);
log = "";
if (Square(2, logger) case Square(area: unit4) when guard(true)) {
log += "statement;";
}
Expect.equals("Square.area:(4==4);guard(true);statement;", log);
log = "";
if (Square(2, logger) case Square(area: unit4) when guard(false)) {
log += "statement;";
} else {
log += "else;";
}
Expect.equals("Square.area:(4==4);guard(false);else;", log);
}