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


C# Block.Insert方法代码示例

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


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

示例1: RenameLocals

		public static void RenameLocals(Block block, StringComparer nameComparer)
		{
			FindVariableDeclarationsVisitor fvdv = new FindVariableDeclarationsVisitor();
			block.Accept(fvdv);
			List<DeclarationStatement> list = new List<DeclarationStatement>();
			foreach (DeclarationStatement decl in fvdv.Declarations) {
				DeclarationStatement conflict = null;
				int conflictIndex = -1;
				for (int i = 0; i < list.Count; i++) {
					if (nameComparer.Equals(list[i].Declaration.Name, decl.Declaration.Name)) {
						conflict = list[i];
						conflictIndex = i;
						break;
					}
				}
				if (conflict == null) {
					list.Add(decl);
				} else {
					// Handle conflict: try if "moveup" would be sufficient
					if (IsSameType(decl.Declaration.Type, conflict.Declaration.Type, nameComparer)) {
						// create declaration at beginning of class and
						// replace decl & conflict by assignment
						DeclarationStatement newDecl = new DeclarationStatement(conflict.LexicalInfo);
						newDecl.Declaration = new Declaration(conflict.Declaration.LexicalInfo, conflict.Declaration.Name, conflict.Declaration.Type);
						block.Insert(0, newDecl);
						ReplaceWithInitializer(decl);
						ReplaceWithInitializer(conflict);
						list[conflictIndex] = newDecl;
					} else {
						string newName = FindFreeName(decl.Declaration.Name, list, fvdv.Declarations, nameComparer);
						decl.ParentNode.Accept(new RenameLocalsVisitor(decl.Declaration.Name, newName, nameComparer));
						decl.Declaration.Name = newName;
					}
				}
			}
		}
开发者ID:Bombadil77,项目名称:SharpDevelop,代码行数:36,代码来源:RenameLocalsVisitor.cs

示例2: ConvertExpressionToTemporaryVariable

        Expression ConvertExpressionToTemporaryVariable(Expression methodInvocation, Block block)
        {
            var temporaryVariable = new ReferenceExpression(Context.GetUniqueName("with"));

            var assignment = new WithBinaryExpression {
                Operator = BinaryOperatorType.Assign,
                Left = Expression.Lift(temporaryVariable),
                Right = methodInvocation
            };

            block.Insert(0, assignment);

            return temporaryVariable;
        }
开发者ID:JeremySkinner,项目名称:Phantom,代码行数:14,代码来源:WithMacro.cs


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