mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-04 02:37:50 +08:00
15 lines
352 B
Go
15 lines
352 B
Go
package eval
|
|
|
|
// Pointers to variables that can be mutated for testing.
|
|
var (
|
|
GetHome = &getHome
|
|
Getwd = &getwd
|
|
OSExit = &osExit
|
|
TimeAfter = &timeAfter
|
|
TimeNow = &timeNow
|
|
NextEvalCount = &nextEvalCount
|
|
|
|
ExceptionCauseStartMarker = &exceptionCauseStartMarker
|
|
ExceptionCauseEndMarker = &exceptionCauseEndMarker
|
|
)
|