comparison src/proto/vim9type.pro @ 23594:d3e064f54890 v8.2.2339

patch 8.2.2339: cannot get the type of a value as a string Commit: https://github.com/vim/vim/commit/a47e05f04a5a5c0369c949157c24d09cbe64ad6a Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 12 21:49:00 2021 +0100 patch 8.2.2339: cannot get the type of a value as a string Problem: Cannot get the type of a value as a string. Solution: Add typename().
author Bram Moolenaar <Bram@vim.org>
date Tue, 12 Jan 2021 22:00:06 +0100
parents 27ca5534a408
children 8dcb2255ff9a
comparison
equal deleted inserted replaced
23593:934ad0b3ba7b 23594:d3e064f54890
22 int equal_type(type_T *type1, type_T *type2); 22 int equal_type(type_T *type1, type_T *type2);
23 void common_type(type_T *type1, type_T *type2, type_T **dest, garray_T *type_gap); 23 void common_type(type_T *type1, type_T *type2, type_T **dest, garray_T *type_gap);
24 type_T *get_member_type_from_stack(type_T **stack_top, int count, int skip, garray_T *type_gap); 24 type_T *get_member_type_from_stack(type_T **stack_top, int count, int skip, garray_T *type_gap);
25 char *vartype_name(vartype_T type); 25 char *vartype_name(vartype_T type);
26 char *type_name(type_T *type, char **tofree); 26 char *type_name(type_T *type, char **tofree);
27 void f_typename(typval_T *argvars, typval_T *rettv);
27 /* vim: set ft=c : */ 28 /* vim: set ft=c : */