本文整理汇总了C#中PropertyDeclaration.GetRegion方法的典型用法代码示例。如果您正苦于以下问题:C# PropertyDeclaration.GetRegion方法的具体用法?C# PropertyDeclaration.GetRegion怎么用?C# PropertyDeclaration.GetRegion使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PropertyDeclaration
的用法示例。
在下文中一共展示了PropertyDeclaration.GetRegion方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: VisitPropertyDeclaration
public override void VisitPropertyDeclaration(PropertyDeclaration propertyDeclaration)
{
var resolveResult = _resolver.Resolve(propertyDeclaration);
if (!(resolveResult is MemberResolveResult)) {
_errorReporter.Region = propertyDeclaration.GetRegion();
_errorReporter.InternalError("Property declaration " + propertyDeclaration.Name + " does not resolve to a member.");
return;
}
var property = ((MemberResolveResult)resolveResult).Member as IProperty;
if (property == null) {
_errorReporter.Region = propertyDeclaration.GetRegion();
_errorReporter.InternalError("Property declaration " + propertyDeclaration.Name + " does not resolve to a property (resolves to " + resolveResult.ToString() + ")");
return;
}
var jsClass = GetJsClass(property.DeclaringTypeDefinition);
if (jsClass == null)
return;
var impl = _metadataImporter.GetPropertySemantics(property);
switch (impl.Type) {
case PropertyScriptSemantics.ImplType.GetAndSetMethods: {
if (!property.IsAbstract && propertyDeclaration.Getter.Body.IsNull && propertyDeclaration.Setter.Body.IsNull) {
// Auto-property
if ((impl.GetMethod != null && impl.GetMethod.GenerateCode) || (impl.SetMethod != null && impl.SetMethod.GenerateCode)) {
var fieldName = _metadataImporter.GetAutoPropertyBackingFieldName(property);
AddDefaultFieldInitializerToType(jsClass, fieldName, property, property.ReturnType, property.DeclaringTypeDefinition, property.IsStatic);
CompileAndAddAutoPropertyMethodsToType(jsClass, property, impl, fieldName);
}
}
else {
if (!propertyDeclaration.Getter.IsNull) {
MaybeCompileAndAddMethodToType(jsClass, propertyDeclaration.Getter, propertyDeclaration.Getter.Body, property.Getter, impl.GetMethod);
}
if (!propertyDeclaration.Setter.IsNull) {
MaybeCompileAndAddMethodToType(jsClass, propertyDeclaration.Setter, propertyDeclaration.Setter.Body, property.Setter, impl.SetMethod);
}
}
break;
}
case PropertyScriptSemantics.ImplType.Field: {
AddDefaultFieldInitializerToType(jsClass, impl.FieldName, property, property.ReturnType, property.DeclaringTypeDefinition, property.IsStatic);
break;
}
case PropertyScriptSemantics.ImplType.NotUsableFromScript: {
break;
}
default: {
throw new InvalidOperationException("Invalid property implementation " + impl.Type);
}
}
}