Added missing comma
This commit is contained in:
parent
442ddc8617
commit
4311f8cf0c
|
@ -313,7 +313,7 @@ function bhl_type_ref(\mtgType $type = null)
|
|||
$is_coro = $type->hasToken("bhl_coroutine");
|
||||
$str = '';
|
||||
$str .= "types.TFunc(".($is_coro?"true":"false").", ";
|
||||
$str .= $type->getReturnType() ? bhl_type_ref($type->getReturnType()) : bhl_type_ref(null);
|
||||
$str .= ($type->getReturnType() ? bhl_type_ref($type->getReturnType()) : bhl_type_ref(null)) . ",";
|
||||
foreach($type->getArgs() as $arg)
|
||||
$str .= bhl_type_ref($arg->getType()) . ",";
|
||||
$str = rtrim($str, ',');
|
||||
|
|
Loading…
Reference in New Issue