]> Nishi Git Mirror - gwion.git/commitdiff
:shirt: Clean type_utils
authorfennecdjay <astor.jeremie@wanadoo.fr>
Sat, 11 May 2019 14:14:10 +0000 (16:14 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Sat, 11 May 2019 14:14:10 +0000 (16:14 +0200)
src/parse/type_utils.c

index 69f240db18a1c8f78ead6aedfe6ef222a12a4f90..d0aa6b3e6e9358f15bdd0b59f188b709c759e8dc 100644 (file)
 #include "parse.h"
 
 ANN m_bool isres(const Env env, const Symbol xid, const loc_t pos) {
-//  const m_str s = s_name(xid);
   if(vector_find(&env->gwion->data->reserved, (vtype)xid) > -1)
     ERR_B(pos, "%s is reserved.", s_name(xid));
-/*
-  if(!strcmp(s, "this")     || //
-     !strcmp(s, "me")       || //
-     !strcmp(s, "now")      || //
-     !strcmp(s, "maybe")    || //
-     !strcmp(s, "vararg")   || //
-     !strcmp(s, "__func__") ||
-     !name2op(s))
-    ERR_B(pos, "%s is reserved.", s_name(xid));
-*/
   return GW_OK;
 }