Go to the source code of this file.
◆ DART_CHECK_ERROR
#define DART_CHECK_ERROR |
( |
|
handle | ) |
|
Value: do { \
Dart_SetReturnValue(
args, (handle)); \
return; \
} \
} while (0)
DART_EXPORT bool Dart_IsError(Dart_Handle handle)
G_BEGIN_DECLS G_MODULE_EXPORT FlValue * args
Definition at line 28 of file sync_socket.cc.
◆ DART_CHECK_ERROR_AND_CLEANUP
#define DART_CHECK_ERROR_AND_CLEANUP |
( |
|
handle, |
|
|
|
ptr |
|
) |
| |
Value: do { \
delete (ptr); \
Dart_SetReturnValue(
args, (handle)); \
return; \
} \
} while (0)
Definition at line 19 of file sync_socket.cc.