| 12345678910111213141516171819202122232425262728293031 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- #pragma once
- namespace Js
- {
- class JavascriptBuiltInFunction
- {
- public:
- enum BuiltInEnum
- {
- #define BUILTIN(c, n, e, i) c ## _ ## n,
- #include "JavascriptBuiltInFunctionList.h"
- #undef BUILTIN
- #ifdef ENABLE_DOM_FAST_PATH
- DOMFastPathGetter,
- DOMFastPathSetter,
- #endif
- MaxBuiltInEnum
- };
- static FunctionInfo * GetFunctionInfo(Js::LocalFunctionId builtinId);
- static bool CanChangeEntryPoint(Js::LocalFunctionId builtInId);
- static bool IsValidId(Js::LocalFunctionId builtInId);
- private:
- static FunctionInfo * const builtInFunctionInfo[MaxBuiltInEnum];
- };
- };
|