X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/93a3786624b2768d89bfa27e46598dc64e2fb70a..81345200c95645a1b0d2635520f96ad55dfde63f:/runtime/LiteralParser.h diff --git a/runtime/LiteralParser.h b/runtime/LiteralParser.h index fac9757..f05f032 100644 --- a/runtime/LiteralParser.h +++ b/runtime/LiteralParser.h @@ -29,6 +29,7 @@ #include "Identifier.h" #include "JSCJSValue.h" #include "JSGlobalObjectFunctions.h" +#include #include namespace JSC { @@ -155,8 +156,8 @@ private: ParserMode m_mode; String m_parseErrorMessage; static unsigned const MaximumCachableCharacter = 128; - FixedArray m_shortIdentifiers; - FixedArray m_recentIdentifiers; + std::array m_shortIdentifiers; + std::array m_recentIdentifiers; ALWAYS_INLINE const Identifier makeIdentifier(const LChar* characters, size_t length); ALWAYS_INLINE const Identifier makeIdentifier(const UChar* characters, size_t length); };