[dart/en] Updated example14 (#3881)

This commit is contained in:
Kir Malev 2024-05-16 07:25:14 +04:00 committed by GitHub
parent 5c518f4a31
commit ef5bdf1c52
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -312,14 +312,14 @@ example14() {
if (a) {
print("true, a is $a");
}
a = null;
a = false;
if (a) {
print("true, a is $a");
} else {
print("false, a is $a"); /// runs here
}
/// dynamic typed null can be convert to bool
/// dynamic typed null can not be convert to bool
var b; /// b is dynamic type
b = "abc";
try {
@ -332,16 +332,16 @@ example14() {
print("error, b is $b"); /// this could be run but got error
}
b = null;
if (b) {
if (b) { /// Failed assertion: boolean expression must not be null)
print("true, b is $b");
} else {
print("false, b is $b"); /// runs here
print("false, b is $b");
}
/// statically typed null can not be convert to bool
var c = "abc";
c = null;
/// complie failed
/// compilation failed
/// if (c) {
/// print("true, c is $c");
/// } else {