JuliaLang/julia

Feature request: deprecate across modules

开放

#21,038 创建于 2017年3月15日

 (1 条评论) (6 个反应) (0 位负责人)Julia (5,773 个派生)batch import
help wantedmacros

仓库指标

星标
 (48,709 个星标)
PR 合并指标
 (平均合并 20天 6小时) (30 天内合并 157 个 PR)

描述

eg make this work:

julia> module A
       f(x)=1
       end
A

julia> module B
       f(x)=2
       end
B

julia> @deprecate A.f(x) B.f(x)
ERROR: invalid usage of @deprecate

贡献者指南