[AUTO] Format files using DocumentFormat
Showing 2 of 4 files from the diff.
src/interface_def.jl
changed.
src/core.jl
changed.
Other files ignored by Codecov
test/test_interface_def.jl
has changed.
test/test_typed.jl
has changed.
@@ -16,7 +16,7 @@
Loading
16 | 16 | function field_allows_missing(field::Expr) |
|
17 | 17 | field.head == :(::) && field.args[2] isa Expr && |
|
18 | 18 | field.args[2].head == :curly && field.args[2].args[1] == :Union && |
|
19 | - | any(i->i == :Missing, field.args[2].args) |
|
19 | + | any(i -> i == :Missing, field.args[2].args) |
|
20 | 20 | end |
|
21 | 21 | ||
22 | 22 | function field_type(field::Expr, typename::String) |
@@ -42,7 +42,7 @@
Loading
42 | 42 | ||
43 | 43 | macro dict_readable(arg) |
|
44 | 44 | tname = arg.args[2] isa Expr ? arg.args[2].args[1] : arg.args[2] |
|
45 | - | count_real_fields = count(field->!(field isa LineNumberNode), arg.args[3].args) |
|
45 | + | count_real_fields = count(field -> !(field isa LineNumberNode), arg.args[3].args) |
|
46 | 46 | ex = quote |
|
47 | 47 | $((arg)) |
|
48 | 48 |
@@ -58,7 +58,7 @@
Loading
58 | 58 | write_task::Union{Nothing,Task} |
|
59 | 59 | end |
|
60 | 60 | ||
61 | - | JSONRPCEndpoint(pipe_in, pipe_out, err_handler = nothing) = |
|
61 | + | JSONRPCEndpoint(pipe_in, pipe_out, err_handler=nothing) = |
|
62 | 62 | JSONRPCEndpoint(pipe_in, pipe_out, Channel{Any}(Inf), Channel{Any}(Inf), Dict{String,Channel{Any}}(), err_handler, :idle, nothing, nothing) |
|
63 | 63 | ||
64 | 64 | function write_transport_layer(stream, response) |
@@ -188,7 +188,7 @@
Loading
188 | 188 | return msg |
|
189 | 189 | end |
|
190 | 190 | ||
191 | - | function Base.iterate(endpoint::JSONRPCEndpoint, state = nothing) |
|
191 | + | function Base.iterate(endpoint::JSONRPCEndpoint, state=nothing) |
|
192 | 192 | endpoint.status == :running || error("Endpoint is not running, the current state is $(endpoint.status).") |
|
193 | 193 | ||
194 | 194 | try |
Files | Coverage |
---|---|
src | 91.19% |
Project Totals (4 files) | 91.19% |
Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file.
The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files.
The size and color of each slice is representing the number of statements and the coverage, respectively.