fix getIncldues result

This commit is contained in:
Umur Ozkul 2022-08-19 20:09:26 +02:00
parent 14ceaa2667
commit 3e3ae50498

View File

@ -92,7 +92,7 @@ let cleanAllResults = (project: reducerProject): unit =>
To set the includes one first has to call "parseIncludes". The parsed includes or the parser error is returned. To set the includes one first has to call "parseIncludes". The parsed includes or the parser error is returned.
*/ */
@genType @genType
let getIncludes = (project: reducerProject, sourceId: string): result< let getIncludes = (project: reducerProject, sourceId: string): result_<
array<string>, array<string>,
Reducer_ErrorValue.errorValue, Reducer_ErrorValue.errorValue,
> => project->T.Private.castToInternalProject->Private.getIncludes(sourceId) > => project->T.Private.castToInternalProject->Private.getIncludes(sourceId)