Bug 1865597 - Add error checking when initializing parallel marking and disable on...
[gecko.git] / js / src / frontend / NameFunctions.h
blobaec65bdc5ea61049dd558a8ea2310da093224eee
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 frontend_NameFunctions_h
8 #define frontend_NameFunctions_h
10 #include "js/TypeDecls.h"
12 namespace js {
14 class FrontendContext;
16 namespace frontend {
18 class ParseNode;
19 class ParserAtomsTable;
21 [[nodiscard]] bool NameFunctions(FrontendContext* fc,
22 ParserAtomsTable& parserAtoms, ParseNode* pn);
24 } /* namespace frontend */
25 } /* namespace js */
27 #endif /* frontend_NameFunctions_h */