VScode
老是为我的抽象类型和结构体定义报 Invalid redefinition of constant.
错误;
另外,我安装了 Revise.jl
同样会对我的定义警告。
不过能单独运行。。。
abstract type Term end
abstract type Atom <: Term end
abstract type Image <: Atom end
abstract type Variable <: Atom end
struct Word <: Atom
literal::String
end
使用 Revise
时
WARNING: Method definition complexity(InferEngine.Atom) in module InferEngine at F:\test\narsese.jl:155 overwritten at F:\test\narsese.jl:155.
** incremental compilation may be fatally broken for this module **
自己被自己重写???