@@ -323,23 +323,31 @@ end
323323# the body on a remote node when using Serialialization.jl (in Distributed.jl
324324# and elsewhere)
325325function Serialization. serialize (s:: AbstractSerializer ,
326- rgf:: RuntimeGeneratedFunction{argnames, cache_tag, context_tag, id, B} ) where {
327- argnames, cache_tag, context_tag, id, B}
326+ rgf:: RuntimeGeneratedFunction {argnames, cache_tag,
327+ context_tag, id, B}) where {
328+ argnames,
329+ cache_tag,
330+ context_tag,
331+ id,
332+ B
333+ }
328334 body = _lookup_body (cache_tag, id)
329- Serialization. serialize_type (s, RuntimeGeneratedFunction{argnames, cache_tag, context_tag, id, B})
335+ Serialization. serialize_type (s,
336+ RuntimeGeneratedFunction{argnames, cache_tag, context_tag,
337+ id, B})
330338 serialize (s, body)
331339end
332340
333341function Serialization. deserialize (s:: AbstractSerializer ,
334342 :: Type {
335343 <: RuntimeGeneratedFunction {argnames, cache_tag,
336344 context_tag, id, B}}) where {
337- argnames,
338- cache_tag,
339- context_tag,
340- id,
341- B
342- }
345+ argnames,
346+ cache_tag,
347+ context_tag,
348+ id,
349+ B
350+ }
343351 body = deserialize (s)
344352 cached_body = _cache_body (cache_tag, id, body)
345353 f = RuntimeGeneratedFunction {argnames, cache_tag, context_tag, id} (cached_body)
0 commit comments