Added zpl's ivrtual memory to dependencies (unused for now)

This commit is contained in:
2023-08-23 11:05:49 -04:00
parent c81f4b34ee
commit f9117a2353
7 changed files with 173 additions and 3 deletions

View File

@ -4454,6 +4454,13 @@ CodeType parse_type( bool* is_function )
brute_sig.Length = ( (sptr)prevtok.Text + prevtok.Length ) - (sptr)brute_sig.Text;
is_first_capture = false;
}
bool is_param_pack = false;
if ( check(TokType::Varadic_Argument) )
{
is_param_pack = true;
eat( TokType::Varadic_Argument );
}
using namespace ECode;
@ -4479,6 +4486,9 @@ CodeType parse_type( bool* is_function )
if ( attributes )
result->Attributes = attributes;
if ( is_param_pack )
result->IsParamPack = true;
Context.pop();
return result;