[][src]Function dart_sys::Dart_FunctionIsStatic

pub unsafe extern "C" fn Dart_FunctionIsStatic(
    function: Dart_Handle,
    is_static: *mut bool
) -> Dart_Handle

Determines whether a function handle referes to a static function of method.

For the purposes of the embedding API, a top-level function is implicitly declared static.

\param function A handle to a function or method declaration. \param is_static Returns whether the function or method is declared static.

\return A valid handle if no error occurs during the operation.