コード例 #1
0
 public virtual void visit(IBasicPropertyNode value)
 {
     // TODO:  Add AbstractVisitor.SemanticTree.ISemanticVisitor.visit implementation
 }
コード例 #2
0
		public virtual void visit(IBasicPropertyNode value)
		{
			// TODO:  Add AbstractVisitor.SemanticTree.ISemanticVisitor.visit implementation
		}
コード例 #3
0
ファイル: Visitor.cs プロジェクト: lisiynos/pascalabcnet
 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            
 }
コード例 #4
0
ファイル: Visitor.cs プロジェクト: CSRedRat/pascalabcnet
 public void visit(IBasicPropertyNode value)
 {
     throw new System.NotSupportedException(value.GetType().ToString());
 }