Skip to content

Commit ec6571b

Browse files
committed
up
1 parent 57b08a2 commit ec6571b

File tree

1 file changed

+12
-14
lines changed

1 file changed

+12
-14
lines changed

src/Compiler/TypedTree/TypedTreePickle.fs

+12-14
Original file line numberDiff line numberDiff line change
@@ -3451,20 +3451,18 @@ and u_syn_open_decl_target st : SynOpenDeclTarget =
34513451
ufailwith st (nameof u_syn_open_decl_target)
34523452

34533453
and u_ccu_data st : CcuData =
3454-
let fileName, ilScopeRef, stamp, qualifiedName,
3455-
sourceCodeDirectory, isFSharp, isProviderGenerated,
3456-
usesFSharp20PlusQuotations, contents =
3457-
u_tup9
3458-
(u_option u_string)
3459-
u_ILScopeRef
3460-
u_stamp
3461-
(u_option u_string)
3462-
u_string
3463-
u_bool
3464-
u_bool
3465-
u_bool
3466-
u_entity_spec_data_new
3467-
st
3454+
let fileName = u_option u_string st
3455+
let ilScopeRef = u_ILScopeRef st
3456+
let stamp = u_stamp st
3457+
let qualifiedName = u_option u_string st
3458+
let sourceCodeDirectory = u_string st
3459+
let isFSharp = u_bool st
3460+
#if !NO_TYPEPROVIDERS
3461+
let isProviderGenerated = u_bool st
3462+
#endif
3463+
let usesFSharp20PlusQuotations = u_bool st
3464+
let contents = u_entity_spec_data_new st
3465+
34683466
{
34693467
FileName = fileName
34703468
ILScopeRef = ilScopeRef

0 commit comments

Comments
 (0)