The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
386 B
18 lines
386 B
3 years ago
|
name: assert
|
||
|
returns: void
|
||
|
description: Abort with an error message if `condition` evaluates to `false`.
|
||
|
|
||
|
notes:
|
||
|
- The `message` argument is optional since 0.53.0 and defaults to print
|
||
|
the condition statement.
|
||
|
|
||
|
posargs:
|
||
|
condition:
|
||
|
type: bool
|
||
|
description: Abort if this evaluates to `false`
|
||
|
|
||
|
optargs:
|
||
|
message:
|
||
|
type: str
|
||
|
description: The error message to print.
|