mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-13 09:57:51 +08:00
9794eecd68
This module provides $runtime:{lib-dirs rc-path effective-rc-path}. It will likely grow in future. This fixes #1385.
38 lines
1.0 KiB
Go
38 lines
1.0 KiB
Go
// Package mods collects standard library modules.
|
|
package mods
|
|
|
|
import (
|
|
"src.elv.sh/pkg/eval"
|
|
"src.elv.sh/pkg/mods/epm"
|
|
"src.elv.sh/pkg/mods/file"
|
|
"src.elv.sh/pkg/mods/flag"
|
|
"src.elv.sh/pkg/mods/math"
|
|
"src.elv.sh/pkg/mods/path"
|
|
"src.elv.sh/pkg/mods/platform"
|
|
"src.elv.sh/pkg/mods/re"
|
|
"src.elv.sh/pkg/mods/readlinebinding"
|
|
"src.elv.sh/pkg/mods/runtime"
|
|
"src.elv.sh/pkg/mods/str"
|
|
"src.elv.sh/pkg/mods/unix"
|
|
)
|
|
|
|
// AddTo adds all standard library modules to the Evaler.
|
|
//
|
|
// All the public properties of the Evaler should be set before this function is
|
|
// called.
|
|
func AddTo(ev *eval.Evaler) {
|
|
ev.AddModule("runtime", runtime.Ns(ev))
|
|
ev.AddModule("math", math.Ns)
|
|
ev.AddModule("path", path.Ns)
|
|
ev.AddModule("platform", platform.Ns)
|
|
ev.AddModule("re", re.Ns)
|
|
ev.AddModule("str", str.Ns)
|
|
ev.AddModule("file", file.Ns)
|
|
ev.AddModule("flag", flag.Ns)
|
|
if unix.ExposeUnixNs {
|
|
ev.AddModule("unix", unix.Ns)
|
|
}
|
|
ev.BundledModules["epm"] = epm.Code
|
|
ev.BundledModules["readline-binding"] = readlinebinding.Code
|
|
}
|