本文整理汇总了C#中Structure.GetFieldInitializations方法的典型用法代码示例。如果您正苦于以下问题:C# Structure.GetFieldInitializations方法的具体用法?C# Structure.GetFieldInitializations怎么用?C# Structure.GetFieldInitializations使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Structure
的用法示例。
在下文中一共展示了Structure.GetFieldInitializations方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GenerateStaticFieldInitializations
private void GenerateStaticFieldInitializations(AstNode node, Function ctor, Structure building)
{
// Get the static initialization fields.
List<FieldDeclaration> staticInitedField = new List<FieldDeclaration> ();
bool isUnsafe = false;
foreach(FieldDeclaration decl in building.GetFieldInitializations())
{
Variable variable = decl.GetVariable();
if(variable.IsStatic())
{
staticInitedField.Add(decl);
if(variable.IsUnsafe())
isUnsafe = true;
}
}
// If there aren't field to initialize, don't create the static constructor.
if(staticInitedField.Count == 0)
return;
// Check if unsafe its required.
if(isUnsafe && !ctor.IsUnsafe())
Error(node, "static constructor must be unsafe due to implicit unsafe static field initialization.");
// Initialize the static fields.
GenerateStaticFieldInitializations(node, staticInitedField);
}
示例2: GenerateFieldInitializations
private void GenerateFieldInitializations(AstNode node, Structure building)
{
foreach(FieldDeclaration decl in building.GetFieldInitializations())
{
// Ignore static fields.
FieldVariable field = (FieldVariable)decl.GetVariable();
if(field.IsStatic())
continue;
// Load self.
builder.CreateLoadArg(0);
// Visit the value expression.
Expression value = decl.GetDefaultValue();
value.Accept(this);
// Cast the value type.
IChelaType valueType = value.GetNodeType();
IChelaType coercionType = decl.GetCoercionType();
if(valueType != coercionType)
Cast(decl, value.GetNodeValue(), valueType, coercionType);
// Store the value.
builder.CreateStoreField(field);
}
}