CCF
Loading...
Searching...
No Matches
checks.h
Go to the documentation of this file.
1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the Apache 2.0 License.
3#pragma once
4
5#define JS_CHECK_EXC(val) \
6 do \
7 { \
8 if (val.is_exception()) \
9 { \
10 return val.take(); \
11 } \
12 } while (0)
13
14#define JS_CHECK_SET(val) \
15 do \
16 { \
17 if (val != 1) \
18 { \
19 return ccf::js::core::constants::Exception; \
20 } \
21 } while (0)