definition:
|
getModuleName :: ReplState -> String -> IO String
getModuleName rst args =
if null args
then return (currMod rst)
else let (dirname, mname) = splitFileName (stripCurrySuffix args)
in if dirname == "./"
then return mname
else getAbsolutePath (stripCurrySuffix args)
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Extract a module name, possibly prefixed by a path, from an argument,
--- or return the current module name if the argument is the empty string.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
getModuleName
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
REPL.State.ReplState -> String -> Prelude.IO String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|