Bug 1885337 - Part 1: Implement to/from hex methods. r=dminor
[gecko.git] / js / src / vm / CompletionKind.h
blob0f9168ce83bd057e6aa899df4a6e7e41e6f5a7fb
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 * vim: set ts=8 sts=2 et sw=2 tw=80:
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef vm_CompletionKind_h
8 #define vm_CompletionKind_h
10 namespace js {
12 enum class CompletionKind : uint8_t { Normal, Return, Throw };
14 } // namespace js
16 #endif // vm_CompletionKind_h