Paul Leathers 9 лет назад
Родитель
Сommit
3d3cfa0790
1 измененных файлов с 2 добавлено и 1 удалено
  1. 2 1
      lib/Runtime/Base/Utf8SourceInfo.h

+ 2 - 1
lib/Runtime/Base/Utf8SourceInfo.h

@@ -10,6 +10,7 @@ namespace Js
     {
         typedef JsUtil::LeafValueDictionary<Js::LocalFunctionId, Js::FunctionBody*>::Type FunctionBodyDictionary;
         typedef JsUtil::LeafValueDictionary<Js::LocalFunctionId, Js::ParseableFunctionInfo*>::Type DeferredFunctionsDictionary;
+        typedef JsUtil::List<Js::FunctionInfo *, Recycler> FunctionInfoList;
 
         friend class RemoteUtf8SourceInfo;
         friend class ScriptContext;
@@ -381,7 +382,7 @@ namespace Js
 
         Field(FunctionBodyDictionary*) functionBodyDictionary;
         Field(DeferredFunctionsDictionary*) m_deferredFunctionsDictionary;
-        Field(JsUtil::List<Js::FunctionInfo *, Recycler> *) topLevelFunctionInfoList;
+        Field(FunctionInfoList*) topLevelFunctionInfoList;
 
         Field(DebugDocument*) m_debugDocument;