Updated docstring for Dart_IsVMFlagSet.

Change-Id: I0f845ebc4b486f9887db2c250b4770c8babbd66d
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/130780
Reviewed-by: Siva Annamalai <asiva@google.com>
Commit-Queue: Siva Annamalai <asiva@google.com>
This commit is contained in:
Aaron Clarke 2020-01-10 21:33:31 +00:00 committed by commit-bot@chromium.org
parent 4f1270655c
commit 1d1e30adbe

View file

@ -862,7 +862,11 @@ DART_EXPORT DART_WARN_UNUSED_RESULT char* Dart_SetVMFlags(int argc,
const char** argv);
/**
* Returns true if the named VM flag is set.
* Returns true if the named VM flag is of boolean type, specified, and set to
* true.
*
* \param flag_name The name of the flag without leading punctuation
* (example: "enable_asserts").
*/
DART_EXPORT bool Dart_IsVMFlagSet(const char* flag_name);