private void CheckArgumentIntegrity(Argument argument)
 {
     if (!(argument.Parent is Alias))
     {
         Context.AddError(CompilerErrorFactory.ArgumentMustBeDefinedInAlias(argument, _currentModule.FileName));
     }
 }