Remove extra is standard check that is already done in Osl.eval

Signed-off-by: Rudi Grinberg <rudi.grinberg@gmail.com>
This commit is contained in:
Rudi Grinberg 2018-07-18 13:11:05 +02:00
parent 5dd218c0b8
commit 621c666610
1 changed files with 12 additions and 15 deletions

View File

@ -417,22 +417,19 @@ let build_mlds_map (d : Super_context.Dir_with_jbuild.t) ~files =
in
List.filter_map d.stanzas ~f:(function
| Documentation doc ->
let mlds = Lazy.force mlds in
let mlds =
if Ordered_set_lang.is_standard doc.mld_files then
mlds
else
Ordered_set_lang.String.eval_unordered doc.mld_files
~parse:(fun ~loc s ->
match String.Map.find mlds s with
| Some s ->
s
| None ->
Loc.fail loc "%s.mld doesn't exist in %s" s
(Path.to_string_maybe_quoted
(Path.drop_optional_build_context dir))
)
~standard:mlds
let mlds = Lazy.force mlds in
Ordered_set_lang.String.eval_unordered doc.mld_files
~parse:(fun ~loc s ->
match String.Map.find mlds s with
| Some s ->
s
| None ->
Loc.fail loc "%s.mld doesn't exist in %s" s
(Path.to_string_maybe_quoted
(Path.drop_optional_build_context dir))
)
~standard:mlds
in
Some (doc, List.map (String.Map.values mlds) ~f:(Path.relative dir))
| _ -> None)