--- parser3/src/classes/reflection.C 2009/07/29 05:07:36 1.4 +++ parser3/src/classes/reflection.C 2009/08/08 13:30:20 1.6 @@ -5,7 +5,7 @@ Author: Alexandr Petrosian (http://paf.design.ru) */ -static const char * const IDENT_REFLECTION_C="$Date: 2009/07/29 05:07:36 $"; +static const char * const IDENT_REFLECTION_C="$Date: 2009/08/08 13:30:20 $"; #include "pa_vmethod_frame.h" #include "pa_request.h" @@ -16,6 +16,7 @@ static const String class_type_methoded( static const String method_type_native("native"); static const String method_type_parser("parser"); +static const String method_call_type("call_type"); static const String method_call_type_static("static"); static const String method_call_type_dynamic("dynamic"); @@ -48,7 +49,7 @@ static void _create(Request& r, MethodPa "class is undefined"); const String& constructor_name=params.as_string(1, "constructor_name must be string"); - Value* constructor_value=class_value->get_element(constructor_name, *class_value, true); + Value* constructor_value=class_value->get_element(constructor_name); if(!constructor_value || !constructor_value->get_junction() || constructor_value->get_junction()->self.get_class()!=class_value) throw Exception(PARSER_RUNTIME, @@ -229,7 +230,7 @@ static void _method_params(Request& r, M // native code hash->put(method_min_params, new VInt(method->min_numbered_params_count)); hash->put(method_max_params, new VInt(method->max_numbered_params_count)); - Value* call_type; + Value* call_type=0; switch(method->call_type){ case Method::CT_DYNAMIC: call_type=new VString(method_call_type_dynamic); @@ -237,11 +238,9 @@ static void _method_params(Request& r, M case Method::CT_STATIC: call_type=new VString(method_call_type_static); break; - default: - call_type=VVoid::get(); } - hash->put(String("call_type"), call_type); - + if(call_type) + hash->put(method_call_type, call_type); } else { // parser code if(method->params_names)