Diff for /parser3/src/classes/reflection.C between versions 1.55 and 1.73

version 1.55, 2016/09/26 16:29:08 version 1.73, 2016/12/01 23:42:35
Line 17  static const String class_type_methoded( Line 17  static const String class_type_methoded(
 static const String method_type_native("native");  static const String method_type_native("native");
 static const String method_type_parser("parser");  static const String method_type_parser("parser");
   
   static const String method_name("name");
   static const String method_class_name("class");
 static const String method_call_type("call_type");  static const String method_call_type("call_type");
 static const String method_inherited("inherited");  static const String method_inherited("inherited");
 static const String method_overridden("overridden");  static const String method_overridden("overridden");
Line 40  DECLARE_CLASS_VAR(reflection, new MRefle Line 42  DECLARE_CLASS_VAR(reflection, new MRefle
   
 // methods  // methods
   
   const int MAX_CREATE_PARAMS = 100;
   
 static void _create(Request& r, MethodParams& params) {  static void _create(Request& r, MethodParams& params) {
         const String& class_name=params.as_string(0, "class_name must be string");          int params_offset;
         VStateless_class* vclass=r.get_class(class_name);          HashStringValue* params_hash=0;
   
         if(!vclass)          const String* class_name=0;
                 throw Exception(PARSER_RUNTIME, &class_name, "class is undefined");          const String* constructor_name=0;
   
         const String& constructor_name=params.as_string(1, "constructor_name must be string");          Value& voptions=params.as_no_junction(0, "params must not be code");
         Value* constructor_value=vclass->get_element(constructor_name);          if(HashStringValue* options=voptions.get_hash()) {
                   int valid_options=0;
                   if(Value* vclass_name=options->get("class")) {
                           valid_options++;
                           class_name=&vclass_name->as_string();
                   }
                   if(Value* vconstructor_name=options->get("constructor")) {
                           valid_options++;
                           constructor_name=&vconstructor_name->as_string();
                   }
                   if(Value* vparams_hash=options->get("arguments")) {
                           valid_options++;
                           params_hash=vparams_hash->as_hash("arguments");
                           if(params.count()>1)
                                   throw Exception(PARSER_RUNTIME, 0, "agruments should not be specified as hash and as create params");
                   }
                   if(valid_options!=options->count())
                           throw Exception(PARSER_RUNTIME, 0, CALLED_WITH_INVALID_OPTION);
   
         if(!constructor_value || !constructor_value->get_junction())                  if(!class_name)
                 throw Exception(PARSER_RUNTIME, &constructor_name, "constructor must be declared in class '%s'", vclass->type());                          throw Exception(PARSER_RUNTIME, 0, "class name must be specified");
                   if(!constructor_name)
                           throw Exception(PARSER_RUNTIME, 0, "constructor name must be specified");
   
         Junction* junction=constructor_value->get_junction();                  params_offset=1;
         const Method* method=junction->method;          } else {
                   class_name=&params.as_string(0, "param must be string or hash");
   
         int nparams=params.count()-2;                  if(params.count()==1)
         int max_params_count;                          throw Exception(PARSER_RUNTIME, 0, "constructor name must be specified");
   
         if(method->native_code){                  constructor_name=&params.as_string(1, "constructor name must be string");
                 if(method->call_type==Method::CT_STATIC)  
                         throw Exception(PARSER_RUNTIME,  
                                 &constructor_name,  
                                 "native method of class '%s' is not allowed to be called dynamically",  
                                 vclass->type());  
   
                 if(nparams<method->min_numbered_params_count)  
                         throw Exception(PARSER_RUNTIME,  
                                 &constructor_name,  
                                 "native method of class '%s' accepts minimum %d parameter(s) (%d passed)",  
                                 vclass->type(),  
                                 method->min_numbered_params_count,  
                                 nparams);  
   
                 max_params_count=method->max_numbered_params_count;                  params_offset=2;
         } else {  
                 max_params_count=method->params_names?method->params_names->count():0;  
         }          }
   
         if(nparams>max_params_count)          VStateless_class* vclass=r.get_class(*class_name);
                 throw Exception(PARSER_RUNTIME,          if(!vclass)
                         &constructor_name,                  throw Exception(PARSER_RUNTIME, class_name, "class is undefined");
                         "method of class '%s' accepts maximum %d parameter(s) (%d passed)",  
                         vclass->type(),          const Method* method=vclass->get_method(*constructor_name);
                         max_params_count,          if(!method)
                         nparams);                  throw Exception(PARSER_RUNTIME, constructor_name, "constructor not found in class '%s'", vclass->type());
   
         Value &object = r.construct(*vclass, *method);          Value &object = r.construct(*vclass, *method);
         VConstructorFrame frame(*method, r.get_method_frame(), object);  
   
         Value* v[100];          int nparams=params_hash ? params_hash->count() : (params.count()-params_offset);
         if(nparams>0){          if(nparams>MAX_CREATE_PARAMS)
                 for(int i=0; i<nparams; i++)                  throw Exception(PARSER_RUNTIME, 0, "arguments count should not exceed %d", MAX_CREATE_PARAMS);
                         v[i]=&r.process_to_value(params[i+2]);  
                 frame.store_params((Value**)&v, nparams);          CONSTRUCTOR_FRAME_ACTION(*method, r.get_method_frame(), object, {
         } else {                  Value* v[MAX_CREATE_PARAMS];
                 frame.empty_params();                  if(nparams>0){
         }                          if(params_hash){
         r.op_call(frame);                                  for(HashStringValue::Iterator i(*params_hash); i; i.next() )
         object.enable_default_setter();                                          v[i]=i.value();
         r.write_pass_lang(frame.result());                          } else {
                                   for(int i=0; i<nparams; i++)
                                           v[i]=&r.process(params[i+params_offset]);
                           }
                           frame.store_params((Value**)&v, nparams);
                   } else {
                           frame.empty_params();
                   }
                   r.call(frame);
                   object.enable_default_setter();
                   r.write(frame.result());
           });
 }  }
   
   
Line 110  static void _classes(Request& r, MethodP Line 128  static void _classes(Request& r, MethodP
         for(HashString<VStateless_class*>::Iterator i(r.classes()); i; i.next()){          for(HashString<VStateless_class*>::Iterator i(r.classes()); i; i.next()){
                 result.hash().put(i.key(), i.value()->get_methods().count()>0 ? new VString(class_type_methoded) : VVoid::get() );                  result.hash().put(i.key(), i.value()->get_methods().count()>0 ? new VString(class_type_methoded) : VVoid::get() );
         }          }
         r.write_no_lang(result);          r.write(result);
 }  }
   
   
Line 133  static const String& get_class_name(Valu Line 151  static const String& get_class_name(Valu
   
   
 static void _class(Request& r, MethodParams& params) {  static void _class(Request& r, MethodParams& params) {
         r.write_no_lang(get_class(params[0]));          r.write(get_class(params[0]));
 }  }
   
   
 static void _class_name(Request& r, MethodParams& params) {  static void _class_name(Request& r, MethodParams& params) {
         r.write_no_lang(get_class_name(params[0]));          r.write(get_class_name(params[0]));
 }  }
   
 static void _class_by_name(Request& r, MethodParams& params) {  static void _class_by_name(Request& r, MethodParams& params) {
Line 146  static void _class_by_name(Request& r, M Line 164  static void _class_by_name(Request& r, M
         Value* class_value=r.get_class(class_name);          Value* class_value=r.get_class(class_name);
         if(!class_value)          if(!class_value)
                 throw Exception(PARSER_RUNTIME, &class_name, "class is undefined");                  throw Exception(PARSER_RUNTIME, &class_name, "class is undefined");
         r.write_no_lang(*class_value);          r.write(*class_value);
 }  }
   
 static void _base(Request& r, MethodParams& params) {  static void _base(Request& r, MethodParams& params) {
         if(VStateless_class* vclass=params[0].get_class())          if(VStateless_class* vclass=params[0].get_class())
                 if(Value* base=vclass->base()){                  if(Value* base=vclass->base()){
                         r.write_no_lang(get_class(*base));                          r.write(get_class(*base));
                         return;                          return;
                 }                  }
   
Line 164  static void _base(Request& r, MethodPara Line 182  static void _base(Request& r, MethodPara
 static void _base_name(Request& r, MethodParams& params) {  static void _base_name(Request& r, MethodParams& params) {
         if(VStateless_class* vclass=params[0].get_class())          if(VStateless_class* vclass=params[0].get_class())
                 if(Value* base=vclass->base())                  if(Value* base=vclass->base())
                         r.write_no_lang(get_class_name(*base));                          r.write(get_class_name(*base));
 }  }
   
 static void _def(Request& r, MethodParams& params) {  static void _def(Request& r, MethodParams& params) {
Line 172  static void _def(Request& r, MethodParam Line 190  static void _def(Request& r, MethodParam
         if(type == def_class) {          if(type == def_class) {
                 const String& name=params.as_string(1, "name must be string");                  const String& name=params.as_string(1, "name must be string");
                 // can't use get_class because it will call @autouse[] if the class wasn't loaded                  // can't use get_class because it will call @autouse[] if the class wasn't loaded
                 r.write_no_lang(VBool::get(r.classes().get(name)!=0));                  r.write(VBool::get(r.classes().get(name)!=0));
         } else {          } else {
                 throw Exception(PARSER_RUNTIME, &type, "is invalid type, must be '%s'", def_class.cstr());                  throw Exception(PARSER_RUNTIME, &type, "is invalid type, must be '%s'", def_class.cstr());
         }          }
Line 189  static void _methods(Request& r, MethodP Line 207  static void _methods(Request& r, MethodP
                 result.hash().put(i.key(), new VString(i.value()->native_code ? method_type_native : method_type_parser));                  result.hash().put(i.key(), new VString(i.value()->native_code ? method_type_native : method_type_parser));
         }          }
   
         r.write_no_lang(result);          r.write(result);
 }  }
   
 static VJunction &method_junction(Value &self, Method &method, const String *name=0){  static VJunction &method_junction(Value &self, Method &method){
         if(method.native_code)          if(method.native_code)
                 throw Exception(PARSER_RUNTIME, name, "method must not be native");                  throw Exception(PARSER_RUNTIME, method.name, "method must not be native");
   
         if(!(dynamic_cast<VObject*>(&self) || dynamic_cast<VClass*>(&self)))          if(!(dynamic_cast<VObject*>(&self) || dynamic_cast<VClass*>(&self)))
                 throw Exception(PARSER_RUNTIME, 0, "self must be parser object or class");                  throw Exception(PARSER_RUNTIME, 0, "self must be parser object or class");
Line 203  static VJunction &method_junction(Value Line 221  static VJunction &method_junction(Value
 }  }
   
 static void _method(Request& r, MethodParams& params) {  static void _method(Request& r, MethodParams& params) {
         Value &source=*params.get(0);          Value &source=params[0];
   
         if(Junction *j=source.get_junction()){          if(Junction *j=source.get_junction()){
                 if(Method* method=const_cast<Method*>(j->method)){                  if(Method* method=const_cast<Method*>(j->method)){
                         Value& self=params.count()>1 ? params.as_no_junction(1, "self must be object, not junction") : r.get_method_frame()->caller()->self();                          Value& self=params.count()>1 ? params.as_no_junction(1, "self must be object, not junction") : r.get_method_frame()->caller()->self();
                         r.write_no_lang(method_junction(self, *method));                          r.write(method_junction(self, *method));
                         return;                          return;
                 }                  }
                 throw Exception(PARSER_RUNTIME, 0, "param must be method junction");                  throw Exception(PARSER_RUNTIME, 0, "param must be method junction");
Line 221  static void _method(Request& r, MethodPa Line 239  static void _method(Request& r, MethodPa
   
         if(VStateless_class* vclass=source.get_class()) {          if(VStateless_class* vclass=source.get_class()) {
                 if(Method* method=vclass->get_method(name)){                  if(Method* method=vclass->get_method(name)){
                         r.write_no_lang( params.count()>2 ? method_junction(params.as_no_junction(2, "self must be object, not junction"), *method, &name) : *method->get_vjunction(source) );                          r.write( params.count()>2 ? method_junction(params.as_no_junction(2, "self must be object, not junction"), *method) : *method->get_vjunction(source) );
                         return;                          return;
                 }                  }
         }          }
Line 232  static void _fields(Request& r, MethodPa Line 250  static void _fields(Request& r, MethodPa
         Value& o=params.as_no_junction(0, "param must be object or class, not junction");          Value& o=params.as_no_junction(0, "param must be object or class, not junction");
   
         if(HashStringValue* fields=o.get_fields())          if(HashStringValue* fields=o.get_fields())
                 r.write_no_lang(*new VHash(*fields));                  r.write(*new VHash(*fields));
         else          else
                 r.write_no_lang(*new VHash());                  r.write(*new VHash());
 }  }
   
 static void _fields_reference(Request& r, MethodParams& params) {  static void _fields_reference(Request& r, MethodParams& params) {
         Value& o=params.as_no_junction(0, "param must be object or hash, not junction");          Value& o=params.as_no_junction(0, "param must be object or hash, not junction");
   
         if(HashStringValue* fields=o.get_fields_reference())          if(HashStringValue* fields=o.get_fields_reference())
                 r.write_no_lang(*new VHashReference(*fields));                  r.write(*new VHashReference(*fields));
         else          else
                 throw Exception(PARSER_RUNTIME, 0, "param must be object or hash");                  throw Exception(PARSER_RUNTIME, 0, "param must be object or hash");
 }  }
Line 252  static void _field(Request& r, MethodPar Line 270  static void _field(Request& r, MethodPar
   
         if(HashStringValue* fields=o.get_fields())          if(HashStringValue* fields=o.get_fields())
                 if(Value* value=fields->get(name))                  if(Value* value=fields->get(name))
                         r.write_no_lang(*value);                          r.write(*value);
 }  }
   
 static void _method_info(Request& r, MethodParams& params) {  static void _method_info(Request& r, MethodParams& params) {
         const String& class_name=params.as_string(0, "class_name must be string");          const Method* method;
         VStateless_class* vclass=r.get_class(class_name);  
         if(!vclass)  
                 throw Exception(PARSER_RUNTIME, &class_name, "class is undefined");  
   
         const String& method_name=params.as_string(1, "method_name must be string");  
         Method* method=vclass->get_method(method_name);  
         if(!method)  
                 throw Exception(PARSER_RUNTIME, &method_name, "method not found in class '%s'", vclass->type());  
   
         VHash& result=*new VHash;          VHash& result=*new VHash;
         HashStringValue* hash=result.get_hash();          HashStringValue* hash=result.get_hash();
   
         VStateless_class* c=vclass;          if(Junction *j=params[0].get_junction()){
         Method* base_method;                  if(!(method=j->method))
         if(c->base() && (base_method=c->base()->get_method(method_name))){                          throw Exception(PARSER_RUNTIME, 0, "param must be class name or method junction");
                 c=c->base()->get_class();  
                 while(c->base() && base_method==c->base()->get_method(method_name))                  hash->put(method_name, new VString(*method->name));
                         c=c->base()->get_class();                  hash->put(method_class_name, new VString(*new String(j->self.type())));
                 hash->put((base_method==method) ? method_inherited : method_overridden, new VString(*new String(c->type())));  
           } else {
                   const String& class_name=params.as_string(0, "param must be class name or method junction");
                   VStateless_class* vclass=r.get_class(class_name);
   
                   if(!vclass)
                           throw Exception(PARSER_RUNTIME, &class_name, "class is undefined");
   
                   if(params.count()==1)
                           throw Exception(PARSER_RUNTIME, 0, "method name must be specified");
   
                   const String& method_name=params.as_string(1, "method name must be string");
                   if(!(method=vclass->get_method(method_name)))
                           throw Exception(PARSER_RUNTIME, &method_name, "method not found in class '%s'", vclass->type());
   
                   Method* base_method;
                   if(vclass && vclass->base() && (base_method=vclass->base()->get_method(*method->name))){
                           VStateless_class* c=vclass->base()->get_class();
                           while(c->base() && base_method==c->base()->get_method(*method->name))
                                   c=c->base()->get_class();
                           hash->put((base_method==method) ? method_inherited : method_overridden, new VString(*new String(c->type())));
                   }
         }          }
   
         Value* call_type=0;          Value* call_type=0;
Line 298  static void _method_info(Request& r, Met Line 329  static void _method_info(Request& r, Met
                 hash->put(method_max_params, new VInt(method->max_numbered_params_count));                  hash->put(method_max_params, new VInt(method->max_numbered_params_count));
         } else {          } else {
                 // parser code                  // parser code
                 const String* filespec = r.get_method_filename(method);                  const String* filespec = r.get_method_filespec(method);
                 if( filespec )                  if( filespec )
                         hash->put("file", new VString(*filespec));                          hash->put("file", new VString(*filespec));
   
Line 312  static void _method_info(Request& r, Met Line 343  static void _method_info(Request& r, Met
                         hash->put(method_extra_param, new VString(*method->extra_params));                          hash->put(method_extra_param, new VString(*method->extra_params));
         }          }
   
         r.write_no_lang(result);          r.write(result);
   }
   
   static void _filename(Request& r, MethodParams& params) {
           if(Junction *j=params[0].get_junction()){
                   if(const Method* method=j->method){
                           if(!method->native_code)
                                   if(const String* filespec = r.get_method_filespec(method))
                                           r.write(*new VString(*filespec));
                           return;
                   }
                   throw Exception(PARSER_RUNTIME, 0, "param must be object, class or method junction");
           }
   
           if(VClass* vclass = dynamic_cast<VClass*>(params[0].get_class())){
                   r.write(*new VString(vclass->get_filespec()));
           }
 }  }
   
 static void _dynamical(Request& r, MethodParams& params) {  static void _dynamical(Request& r, MethodParams& params) {
         if(params.count()){          if(params.count()){
                 r.write_no_lang(VBool::get(params[0].get_class() != &params[0]));                  r.write(VBool::get(params[0].get_class() != &params[0]));
         } else {          } else {
                 VMethodFrame* caller=r.get_method_frame()->caller();                  VMethodFrame* caller=r.get_method_frame()->caller();
                 r.write_no_lang(VBool::get(caller && caller->get_class() != &caller->self()));                  r.write(VBool::get(caller && caller->get_class() != &caller->self()));
         }          }
 }  }
   
Line 333  static void _is(Request& r, MethodParams Line 380  static void _is(Request& r, MethodParams
         if(value) {          if(value) {
                 if(type == "code" || type == "method") {                  if(type == "code" || type == "method") {
                         Junction *junction=value->get_junction();                          Junction *junction=value->get_junction();
                         r.write_no_lang(VBool::get(junction && ((junction->code==0) ^ (type == "code"))) );                          r.write(VBool::get(junction && ((junction->code==0) ^ (type == "code"))) );
                 } else {                  } else {
                         r.write_no_lang(VBool::get( value->is(type.cstr()) ));                          r.write(VBool::get( value->is(type.cstr()) ));
                 }                  }
         } else          } else
                 r.write_no_lang(VBool::get(type == "void"));                  r.write(VBool::get(type == "void"));
 }  }
   
 static void _copy(Request& r, MethodParams& params) {  static void _copy(Request& r, MethodParams& params) {
Line 359  static void _uid(Request& r, MethodParam Line 406  static void _uid(Request& r, MethodParam
         char local_buf[MAX_NUMBER];          char local_buf[MAX_NUMBER];
         int size=snprintf(local_buf, sizeof(local_buf), "%p", &obj);          int size=snprintf(local_buf, sizeof(local_buf), "%p", &obj);
   
         r.write_pass_lang(*new String(String::C(pa_strdup(local_buf, (size_t)size), size)));          r.write(*new String(String::C(pa_strdup(local_buf, (size_t)size), size)));
 }  }
   
 static void _delete(Request&, MethodParams& params) {  static void _delete(Request&, MethodParams& params) {
           Value* v=&params.as_no_junction(0, "param must be object or class, not junction");
         const String& key=params.as_string(1, "field name must be string");          const String& key=params.as_string(1, "field name must be string");
         if(HashStringValue* fields=params[0].get_fields()){  
                 fields->remove(key);          if(VObject* o=dynamic_cast<VObject*>(v)){
                   o->get_fields()->remove(key);
           } else if(VClass* c=dynamic_cast<VClass*>(v)){
                   HashStringProperty &p=*c->get_properties();
                   if(Property* property=p.get(key))
                           if(property->value)
                                   p.remove(key);
         }          }
 }  }
   
Line 376  static void _mixin(Request& r, MethodPar Line 430  static void _mixin(Request& r, MethodPar
         const String *name=0;          const String *name=0;
         bool copy_methods=true;          bool copy_methods=true;
         bool copy_fields=true;          bool copy_fields=true;
         bool overwrite=true;          bool overwrite=false;
   
         if(params.count()>1)          if(params.count()>1)
                 if(HashStringValue* options=params.as_hash(1, "mixin options")) {                  if(HashStringValue* options=params.as_hash(1, "mixin options")) {
Line 389  static void _mixin(Request& r, MethodPar Line 443  static void _mixin(Request& r, MethodPar
                                 valid_options++;                                  valid_options++;
                         }                          }
                         if(Value* vmethods=options->get("methods")) {                          if(Value* vmethods=options->get("methods")) {
                                 copy_methods=r.process_to_value(*vmethods).as_bool();                                  copy_methods=r.process(*vmethods).as_bool();
                                 valid_options++;                                  valid_options++;
                         }                          }
                         if(Value* vfields=options->get("fields")) {                          if(Value* vfields=options->get("fields")) {
                                 copy_fields=r.process_to_value(*vfields).as_bool();                                  copy_fields=r.process(*vfields).as_bool();
                                 valid_options++;                                  valid_options++;
                         }                          }
                         if(Value* voverwrite=options->get("overwrite")) {                          if(Value* voverwrite=options->get("overwrite")) {
                                 overwrite=r.process_to_value(*voverwrite).as_bool();                                  overwrite=r.process(*voverwrite).as_bool();
                                 valid_options++;                                  valid_options++;
                         }                          }
                         if(valid_options!=options->count())                          if(valid_options!=options->count())
Line 419  static void _mixin(Request& r, MethodPar Line 473  static void _mixin(Request& r, MethodPar
                 if(copy_methods)                  if(copy_methods)
                         if(Method* method=source->get_method(*name))                          if(Method* method=source->get_method(*name))
                                 if(overwrite || !target->get_method(*name)){                                  if(overwrite || !target->get_method(*name)){
                                         target->set_method(*name, method);                                          target->set_method(*name, new Method(*method));
                                         return;  
                                 }                                  }
   
                 if(copy_fields)                  if(copy_fields)
                         if(Property* property=source->get_properties()->get(*name))                          if(Property* property=source->get_properties()->get(*name))
                                 if(property->value && (overwrite || !target->get_properties()->get(*name))){                                  if(property->value && (overwrite || !target->get_properties()->get(*name))){
                                         target->put_element(*target, *name, property->value);                                          target->put_element(*target, *name, property->value);
                                         return;  
                                 }                                  }
   
         } else {          } else {
                 if(copy_methods)                  if(copy_methods)
                         for(HashStringMethod::Iterator i(source->get_methods()); i; i.next()){                          for(HashStringMethod::Iterator i(source->get_methods()); i; i.next()){
                                 if(overwrite || !target->get_method(i.key()))                                  if(overwrite || !target->get_method(i.key()))
                                         target->set_method(*new String(i.key(), String::L_TAINTED), i.value());                                          target->set_method(*i.value()->name, new Method(*i.value()));
                         }                          }
                 if(copy_fields)                  if(copy_fields)
                         for(HashStringProperty::Iterator i(*source->get_properties()); i; i.next()){                          for(HashStringProperty::Iterator i(*source->get_properties()); i; i.next()){
Line 448  static void _mixin(Request& r, MethodPar Line 500  static void _mixin(Request& r, MethodPar
 // constructor  // constructor
 MReflection::MReflection(): Methoded("reflection") {  MReflection::MReflection(): Methoded("reflection") {
         // ^reflection:create[class_name;constructor_name[;param1[;param2[;...]]]]          // ^reflection:create[class_name;constructor_name[;param1[;param2[;...]]]]
         add_native_method("create", Method::CT_STATIC, _create, 2, 102);          // ^reflection:create[ $.class[name] $.constructor[name] $.arguments[ $.1[param1] $.2[param2] ...] ]
           add_native_method("create", Method::CT_STATIC, _create, 1, MAX_CREATE_PARAMS + 2);
   
         // ^reflection:classes[]          // ^reflection:classes[]
         add_native_method("classes", Method::CT_STATIC, _classes, 0, 0);          add_native_method("classes", Method::CT_STATIC, _classes, 0, 0);
Line 479  MReflection::MReflection(): Methoded("re Line 532  MReflection::MReflection(): Methoded("re
         add_native_method("method", Method::CT_STATIC, _method, 1, 3);          add_native_method("method", Method::CT_STATIC, _method, 1, 3);
   
         // ^reflection:method_info[class_name;method_name]          // ^reflection:method_info[class_name;method_name]
         add_native_method("method_info", Method::CT_STATIC, _method_info, 2, 2);          // ^reflection:method_info[junction]
           add_native_method("method_info", Method::CT_STATIC, _method_info, 1, 2);
   
           // ^reflection:filename[object or class]
           add_native_method("filename", Method::CT_STATIC, _filename, 1, 1);
   
         // ^reflection:fields[object or class]          // ^reflection:fields[object or class]
         add_native_method("fields", Method::CT_STATIC, _fields, 1, 1);          add_native_method("fields", Method::CT_STATIC, _fields, 1, 1);

Removed from v.1.55  
changed lines
  Added in v.1.73


E-mail: