/
githubmirror
/
julia
Обзор
Документация
Войти
/
githubmirror
/
julia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
base/module.jl
142 строки
5 KB
Shuhei Kadowaki
Base: Remove dead stores and unused bindings flagged by JETLS (#62534)
28 июл 2026, 15:03
Не верифицирован
28 июл 2026, 15:03
8ddf7d8
Код
Авторство
О чём код?
# This file is a part of Julia. License is MIT: https://julialang.org/license # Full-featured versions of _eval_import and _eval_using for m in methods(_eval_import) delete_method(m) end for m in methods(_eval_using) delete_method(m) end function eval_import_path(at::Module, from::Union{Module, Nothing}, path::Expr, keyword::String) isempty(path.args) && error("malformed import statement") i = RefValue(1) function next!() local v i[] <= length(path.args) || error("invalid module path") v = path.args[i[]] i[] += 1 v isa Symbol || throw(TypeError(Symbol(keyword), "", Symbol, v)) v end v = next!() if from !== nothing m = from elseif v !== :. # `A.B`: call the loader to obtain the root A in the current environment. if v === :Core m = Core elseif v === :Base m = Base else m = require(at, v) m isa Module || error("failed to load module $v") end i[] > lastindex(path.args) && return m, nothing v = next!() else # `.A.B.C`: strip off leading dots by following parent links m = at while (v = next!()) === :. m = parentmodule(m) end end while true v === :. && error("invalid $keyword path: \".\" in identifier path") i[] > lastindex(path.args) && break m = getglobal(m, v) m isa Module || error("invalid $keyword path: \"$v\" does not name a module") v = next!() end m, v end function eval_import_path_all(at::Module, path::Expr, keyword::String) m, v = eval_import_path(at, nothing, path, keyword) if v !== nothing m = getglobal(m, v) m isa Module || error("invalid $keyword path: \"$v\" does not name a module") end m end function check_macro_rename(from::Symbol, to::Symbol, keyword::String) c1(sym) = bitcast(Char, UInt32(unsafe_load(unsafe_convert(Ptr{UInt8}, sym))) << 24) from_c, to_c = c1(from), c1(to) if from_c == '@' && to_c != '@' error("cannot rename macro \"$from\" to non-macro \"$to\" in \"$keyword\"") end if from_c != '@' && to_c == '@' error("cannot rename non-macro \"$from\" to macro \"$to\" in \"$keyword\"") end end """ _eval_import(imported::Bool, to::Module, from::Union{Expr, Nothing}, paths::Expr...) Evaluate the import paths, calling `Core._import` for each name to be imported. `imported` imports are created with `import`, `using A: x` sets this to false. The `from` is the part of the import path before the `:`. This is the lowered form of `import`, `import ...:`, and `using ...:`. ``` import A => _eval_import(true, Main, nothing, Expr(:., :A)) import A.b => _eval_import(true, Main, nothing, Expr(:., :A, :b)) import A.b as c => _eval_import(true, Main, nothing, Expr(:as, Expr(:., :A, :b), :c)) import A.B: C.d, e => _eval_import(true, Main, Expr(:., :A, :B), Expr(:., :C, :d), Expr(:., :e)) import A.B: C.d as e => _eval_import(true, Main, Expr(:., :A, :B), Expr(:as, Expr(:., :C, :d), :e)) using A.B: C.d, e => _eval_import(false, Main, Expr(:., :A, :B), Expr(:., :C, :d), Expr(:., :e)) See also [`_import`](@ref Core._import). ``` """ function _eval_import(imported::Bool, to::Module, from::Union{Expr, Nothing}, paths::Expr...) keyword = imported ? "import" : "using" fail() = error("malformed \"$keyword\" statement") from = from !== nothing ? eval_import_path_all(to, from, keyword) : nothing for path in paths path isa Expr || fail() asname = nothing if path.head === :as && length(path.args) == 2 path, asname = path.args elseif path.head !== :. fail() end m, name = eval_import_path(to, from, path, keyword) if name !== nothing asname = asname === nothing ? name : asname check_macro_rename(name, asname, keyword) Core._import(to, m, asname, name, imported) else Core._import(to, m, asname === nothing ? nameof(m) : asname) end end end """ _eval_using(to::Module, path::Expr) Evaluate the import path to a module and call [`Core._using`](@ref) on it, making its exports available to the `to` module; this is the lowered form of `using A`. ``` using A.B => _eval_using(Main, Expr(:., :A, :B)) ``` See also [`_using`](@ref Core._using). """ function _eval_using(to::Module, path::Expr, flags::UInt8=UInt8(0)) from = eval_import_path_all(to, path, "using") Core._using(to, from, flags) is_package = length(path.args) == 1 && path.args[1] !== :. if to == Main && is_package Core._import(to, from, nameof(from)) end end