Beispiel #1
0
 public SymbolInfo(compiled_property_node value)
 {
     //_name_information_type=name_information_type.nit_compiled_property;
     _sym_info     = value;
     _access_level = get_class_member_access_level(value);
     _symbol_kind  = symbol_kind.sk_none;
 }
Beispiel #2
0
        public static compiled_property_node GetPropertyNode(PropertyInfo pi)
        {
            compiled_property_node cpn = (compiled_property_node)prop_nodes[pi];

            if (cpn != null)
            {
                return(cpn);
            }
            cpn = new compiled_property_node(pi);

            prop_nodes[pi] = cpn;
            return(cpn);
        }
Beispiel #3
0
		public static compiled_property_node GetPropertyNode(PropertyInfo pi)
		{
			compiled_property_node cpn = (compiled_property_node)prop_nodes[pi];
			if (cpn != null) return cpn;
			cpn = new compiled_property_node(pi);
			
			prop_nodes[pi] = cpn;
			return cpn;
		}