///<see cref="IDeclarator{definitionType}.Rename(string, string)"/> public void Rename(string lastName, string newName) { scope.Rename(lastName, newName); }
/// <summary> /// Allow user to rename an attribute /// </summary> /// <param name="lastName">Current name of the attribute</param> /// <param name="newName">New name to set to the attribute</param> public void RenameAttribute(string lastName, string newName) { attributes.Rename(lastName, newName); }