[DO NOT MERGE (YET)] `@ignoreDeprecations` attribute
@hamishknight some git quirkiness happened here, anyways, is there anything more we have to do now in terms of the swift syntax repo?
@hamishknight Looks good now?
@hamishknight ^
Do you have any idea how we would refer to subscripts in the attribute?
Do you have any idea how we would refer to subscripts in the attribute?
IMO it would make sense to refer to them as x.subscript, this is not dissimilar to what we parse for e.g @available(*, deprecated, renamed: "subscript(y:)"). subscript cannot be used as an identifier on its own, it would require backticks, so it doesn't conflict with a function named subscript.
Do you have any idea how we would refer to subscripts in the attribute?
IMO it would make sense to refer to them as
x.subscript, this is not dissimilar to what we parse for e.g@available(*, deprecated, renamed: "subscript(y:)").subscriptcannot be used as an identifier on its own, it would require backticks, so it doesn't conflict with a function namedsubscript.
Sounds good!