当前位置: 首页>>代码示例>>C#>>正文


C# FieldDeclaration.GetTypeForField方法代码示例

本文整理汇总了C#中ICSharpCode.NRefactory.Ast.FieldDeclaration.GetTypeForField方法的典型用法代码示例。如果您正苦于以下问题:C# FieldDeclaration.GetTypeForField方法的具体用法?C# FieldDeclaration.GetTypeForField怎么用?C# FieldDeclaration.GetTypeForField使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ICSharpCode.NRefactory.Ast.FieldDeclaration的用法示例。


在下文中一共展示了FieldDeclaration.GetTypeForField方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: VisitFieldDeclaration

		public object VisitFieldDeclaration(FieldDeclaration fieldDeclaration, object data)
		{
			for (int i = 0; i < fieldDeclaration.Fields.Count; i++) {
				ConvertField(fieldDeclaration.GetTypeForField(i), fieldDeclaration.Fields[i], fieldDeclaration);
			}
			return null;
		}
开发者ID:Bombadil77,项目名称:SharpDevelop,代码行数:7,代码来源:ConvertVisitorTypeMembers.cs

示例2: TransformWithEventsField

		void TransformWithEventsField(FieldDeclaration fieldDeclaration)
		{
			if (resolver.CallingClass == null)
				return;
			
			INode insertAfter = fieldDeclaration;
			
			for (int i = 0; i < fieldDeclaration.Fields.Count;) {
				VariableDeclaration field = fieldDeclaration.Fields[i];
				
				IdentifierExpression backingFieldNameExpression = null;
				PropertyDeclaration createdProperty = null;
				foreach (IMethod m in resolver.CallingClass.GetCompoundClass().Methods) {
					foreach (string handlesClause in m.HandlesClauses) {
						int pos = handlesClause.IndexOf('.');
						if (pos > 0) {
							string fieldName = handlesClause.Substring(0, pos);
							string eventName = handlesClause.Substring(pos + 1);
							if (resolver.IsSameName(fieldName, field.Name)) {
								if (createdProperty == null) {
									FieldDeclaration backingField = new FieldDeclaration(null);
									backingField.Fields.Add(new VariableDeclaration(
										"withEventsField_" + field.Name, field.Initializer, fieldDeclaration.GetTypeForField(i)));
									backingField.Modifier = Modifiers.Private;
									InsertAfterSibling(insertAfter, backingField);
									createdProperty = new PropertyDeclaration(fieldDeclaration.Modifier, null, field.Name, null);
									createdProperty.TypeReference = fieldDeclaration.GetTypeForField(i);
									createdProperty.StartLocation = fieldDeclaration.StartLocation;
									createdProperty.EndLocation = fieldDeclaration.EndLocation;
									
									backingFieldNameExpression = new IdentifierExpression(backingField.Fields[0].Name);
									
									createdProperty.GetRegion = new PropertyGetRegion(new BlockStatement(), null);
									createdProperty.GetRegion.Block.AddChild(new ReturnStatement(
										backingFieldNameExpression));
									
									Expression backingFieldNotNullTest = new BinaryOperatorExpression(
										backingFieldNameExpression,
										BinaryOperatorType.InEquality,
										new PrimitiveExpression(null, "null"));
									
									createdProperty.SetRegion = new PropertySetRegion(new BlockStatement(), null);
									createdProperty.SetRegion.Block.AddChild(new IfElseStatement(
										backingFieldNotNullTest, new BlockStatement()
									));
									createdProperty.SetRegion.Block.AddChild(new ExpressionStatement(
										new AssignmentExpression(
											backingFieldNameExpression,
											AssignmentOperatorType.Assign,
											new IdentifierExpression("value"))));
									createdProperty.SetRegion.Block.AddChild(new IfElseStatement(
										backingFieldNotNullTest, new BlockStatement()
									));
									InsertAfterSibling(backingField, createdProperty);
									insertAfter = createdProperty;
								}
								
								// insert code to remove the event handler
								IfElseStatement ies = (IfElseStatement)createdProperty.SetRegion.Block.Children[0];
								ies.TrueStatement[0].AddChild(new RemoveHandlerStatement(
									new MemberReferenceExpression(backingFieldNameExpression, eventName),
									new AddressOfExpression(new IdentifierExpression(m.Name))));
								
								// insert code to add the event handler
								ies = (IfElseStatement)createdProperty.SetRegion.Block.Children[2];
								ies.TrueStatement[0].AddChild(new AddHandlerStatement(
									new MemberReferenceExpression(backingFieldNameExpression, eventName),
									new AddressOfExpression(new IdentifierExpression(m.Name))));
							}
						}
					}
				}
				
				if (createdProperty != null) {
					// field replaced with property
					fieldDeclaration.Fields.RemoveAt(i);
				} else {
					i++;
				}
			}
		}
开发者ID:SiGhTfOrbACQ,项目名称:O2.Platform.Projects,代码行数:81,代码来源:VBNetToCSharpConvertVisitor.cs

示例3: VisitFieldDeclaration

        public override object VisitFieldDeclaration(FieldDeclaration fieldDeclaration, object data)
        {
            for (int i = 0; i < fieldDeclaration.Fields.Count; ++i) {
                VariableDeclaration field = (VariableDeclaration)fieldDeclaration.Fields[i];

                if ((fieldDeclaration.Modifier & Modifiers.WithEvents) != 0) {
                    //this.withEventsFields.Add(field);
                }
                TypeReference fieldType = fieldDeclaration.GetTypeForField(i);

                if (fieldType.IsNull) {
                    fieldType = new TypeReference(typeDeclarations.Peek().Name);
                }

                CodeMemberField memberField = new CodeMemberField(ConvType(fieldType), field.Name);
                memberField.Attributes = ConvMemberAttributes(fieldDeclaration.Modifier);
                if (!field.Initializer.IsNull) {
                    memberField.InitExpression = (CodeExpression)field.Initializer.AcceptVisitor(this, data);
                }

                typeDeclarations.Peek().Members.Add(memberField);
            }

            return null;
        }
开发者ID:almazik,项目名称:ILSpy,代码行数:25,代码来源:CodeDOMOutputVisitor.cs


注:本文中的ICSharpCode.NRefactory.Ast.FieldDeclaration.GetTypeForField方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。