blob: 2c6c006252bdb690e034b52a5902977ac151dfba [file]
//-------------------------------------------------------------------------------------------------------
// 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];
};
};