Skip to content

Commit 3466dee

Browse files
committed
apply formatter
1 parent bf5742a commit 3466dee

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/systems/model_parsing.jl

+4-2
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,8 @@ end
246246
# The comments indicate the syntax matched by a block; either when parsed directly
247247
# when it is called recursively for parsing a part of an expression.
248248
# These variable definitions are part of test suite in `test/model_parsing.jl`
249-
Base.@nospecializeinfer function parse_variable_def!(dict, mod, arg, varclass, kwargs, where_types;
249+
Base.@nospecializeinfer function parse_variable_def!(
250+
dict, mod, arg, varclass, kwargs, where_types;
250251
def = nothing, type::Type = Real, meta = Dict{DataType, Expr}())
251252
@nospecialize
252253
arg isa LineNumberNode && return
@@ -1356,7 +1357,8 @@ push_something!(v, x...) = push_something!.(Ref(v), x)
13561357

13571358
define_blocks(branch) = [Expr(branch), Expr(branch), Expr(branch), Expr(branch)]
13581359

1359-
Base.@nospecializeinfer function parse_top_level_branch(condition, x, y = nothing, branch::Symbol = :if)
1360+
Base.@nospecializeinfer function parse_top_level_branch(
1361+
condition, x, y = nothing, branch::Symbol = :if)
13601362
@nospecialize
13611363
blocks::Vector{Union{Expr, Nothing}} = component_blk, equations_blk, parameter_blk, variable_blk = define_blocks(branch)
13621364

0 commit comments

Comments
 (0)