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


C# common_type_node.Merge方法代码示例

本文整理汇总了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;
		}
开发者ID:PascalABC-CompilerLaboratory,项目名称:pascalabcnet,代码行数:42,代码来源:compilation_context.cs


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