@@ -13,7 +13,7 @@ function unwrap_fun(expr::Expr)
1313 elseif expr. head == :block
1414 fexpr = expr. args[2 ] # separate fexpr from block
1515 else
16- error(" expression not supported" )
16+ error(" Expression is not supported" )
1717 end
1818
1919 head = fexpr. args[1 ]
@@ -27,7 +27,7 @@ function unwrap_fun(expr::Expr, should_unwrap_head::Bool)
2727 elseif expr. head == :block
2828 fexpr = expr. args[2 ] # separate fexpr from block
2929 else
30- error(" expression not supported" )
30+ error(" Expression is not supported" )
3131 end
3232
3333 head = fexpr. args[1 ]
@@ -42,7 +42,7 @@ function unwrap_fun(expr::Expr, should_unwrap_head::Bool, should_unwrap_fcall::B
4242 elseif expr. head == :block
4343 fexpr = expr. args[2 ] # separate fexpr from block
4444 else
45- error(" expression not supported" )
45+ error(" Expression is not supported" )
4646 end
4747
4848 head = fexpr. args[1 ]
@@ -83,7 +83,7 @@ function wrap_fun(fexpr::Expr)
8383 fexpr = fexpr. args[2 ] # separate fexpr from block
8484 return fexpr
8585 else
86- error(" expression not supported" )
86+ error(" Expression is not supported" )
8787 end
8888end
8989
109109# ###############################################################
110110function unwrap_fcall(fcall:: Expr )
111111 if ! (fcall. head == :call)
112- error(" expression is not supported" )
112+ error(" Expression is not supported" )
113113 end
114114 f = fcall. args[1 ]
115115 args = fcall. args[2 : end ]
0 commit comments