Ejemplo n.º 1
0
		public static FuncDeclNode Get(FuncDeclEquatable funcDeclEquatable)
		{
			foreach (FuncDeclNode decl in declarations_)
				if (decl.Equatable.Equals(funcDeclEquatable))
					return decl;
			return null;
		}
Ejemplo n.º 2
0
		public static bool Contains(FuncDeclEquatable funcDeclEquatable)
		{
			foreach (FuncDeclNode decl in declarations_)
				if (decl.Equatable.Equals(funcDeclEquatable))
					return true;
			return false;
		}