本文整理汇总了C#中PascalABCCompiler.TreeRealization.common_type_node.Merge方法的典型用法代码示例。如果您正苦于以下问题:C# common_type_node.Merge方法的具体用法?C# common_type_node.Merge怎么用?C# common_type_node.Merge使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PascalABCCompiler.TreeRealization.common_type_node
的用法示例。
在下文中一共展示了common_type_node.Merge方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: advanced_create_type
public common_type_node advanced_create_type(string name,location def_loc, bool type_is_interface, bool is_partial=false)
{
//check_name_free(name,def_loc);
common_type_node partial_class = null;
common_type_node rez = check_type_name_free_and_predop(name, def_loc, ref partial_class, is_partial);
if (rez != null)
{
_ctn = rez;
_types_predefined.Remove(_ctn);
return rez;
}
if (converting_block() != block_type.namespace_block)
{
AddError(new ClassCanNotBeDefinedInTypeOrFunction(name, def_loc));
}
SymbolTable.ClassScope scope;
//(ssyy) Если создаётся интерфейс, то создаём ему специальный вид области видимости
if (type_is_interface)
{
scope = convertion_data_and_alghoritms.symbol_table.CreateInterfaceScope(_cmn.scope, null);
}
else
{
scope = convertion_data_and_alghoritms.symbol_table.CreateClassScope(_cmn.scope, null);
}
common_type_node tctn=new common_type_node(name,SemanticTree.type_access_level.tal_public,_cmn,
scope,def_loc);
tctn.IsPartial = is_partial;
if (partial_class != null)
{
tctn.scope.PartialScope = partial_class.scope;
tctn.Merge(partial_class);
}
set_field_access_level(SemanticTree.field_access_level.fal_public);
_cmn.scope.AddSymbol(name,new SymbolInfo(tctn));
tctn.IsInterface = type_is_interface;
//_cmn.types.AddElement(tctn);
_ctn=tctn;
SystemLibrary.SystemLibrary.init_reference_type(tctn);
return tctn;
}