JuliaLang/julia

Feature request: deprecate across modules

オープン

#21,038 opened on 2017/03/15

 (1 件のコメント) (6 件のリアクション) (0 人の担当者)Julia (5,773 件のフォーク)batch import
help wantedmacros

Repository metrics

Stars
 (48,709 個のスター)
PR merge metrics
 (平均マージ 20d 6h) (30d で 157 merged PRs)

説明

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

コントリビューターガイド