File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -59,7 +59,6 @@ namespace Js
5959#endif
6060 trigramAlphabet (nullptr ),
6161 regexStacks (nullptr ),
62- arrayMatchInit (false ),
6362 config (threadContext->GetConfig (), threadContext->IsOptimizedForManyInstances()),
6463#if ENABLE_BACKGROUND_PARSING
6564 backgroundParser (nullptr ),
Original file line number Diff line number Diff line change @@ -922,10 +922,6 @@ namespace Js
922922 CriticalSection debugContextCloseCS;
923923
924924 public:
925- static const int kArrayMatchCh =72 ;
926- static const int kMaxArrayMatchIndex =8192 ;
927- short arrayMatchItems[kArrayMatchCh ];
928- bool arrayMatchInit;
929925
930926#ifdef LEAK_REPORT
931927 LeakReport::UrlRecord * urlRecord;
@@ -981,17 +977,6 @@ namespace Js
981977 time_t GetCreateTime () const { return createTime; }
982978 uint GetAllocId () const { return allocId; }
983979#endif
984- void InitializeArrayMatch ()
985- {
986- if (!arrayMatchInit)
987- {
988- for (int i=0 ;i<kArrayMatchCh ;i++)
989- {
990- arrayMatchItems[i]= -1 ;
991- }
992- arrayMatchInit=true ;
993- }
994- }
995980
996981#ifdef HEAP_ENUMERATION_VALIDATION
997982 bool IsInitialized () { return this ->isInitialized ; }
You can’t perform that action at this time.
0 commit comments