Beispiel #1
0
 public void visit(IBasicPropertyNode value)
 {
     string s = value.GetType().ToString() + ".";
     prepare_string_node(value.name, s + "name");
     //value.comprehensive_type
     //value.get_function
     prepare_string_node(value.node_kind.ToString(), s + "node_kind");
     prepare_collection(value.parameters, s + "parameters", "parameters", value.parameters.Length);
     //value.property_type
     //value.set_function            
 }
Beispiel #2
0
 public void visit(IBasicPropertyNode value)
 {
     throw new System.NotSupportedException(value.GetType().ToString());
 }