CurryInfo: currypp-3.2.0 / CPP.ICode.Parser.SQL.Namer.nameStatements

definition:
nameStatements ::  PM [Statement] -> Pos -> PM [Statement]
nameStatements (PM( WM (Errors err) ws)) _ = PM $ WM (throwPR err) ws
nameStatements (PM (WM (OK ast) ws))     p =
  let (PM (WM resPR warns)) = sequencePM (map (nameStatement p emptyTable) ast)
   in (PM $ WM resPR (ws ++ warns))
demand:
argument 1
deterministic:
deterministic operation
documentation:
--- Takes a list of completely parsed statements (wrapped in a PM),
--- inserts the name of the corresponding table (resolving the
--- pseudonym if given) and sets the right alias (int) for CDBI
--- in each AST-node representing a column. The correct CDBI-alias
--- is also set for each table-node and relationship-constraint-node.
--- An error is thrown, if the referenced alias was not defined
--- in the corresponding statement or if it is defined more than once.
--- Consistence with the data model is not checked at this stage.
---@param pm - the PM containing list of parsed statements
---@return unchanged PM if it contained errors
---        PM with named columns otherwise
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{({PM},_) |-> _}
name:
nameStatements
precedence:
no precedence defined
result-values:
_
signature:
CPP.ICode.ParseMonad.PM [CPP.ICode.Parser.SQL.AST.Statement]
-> CPP.ICode.ParsePos.Pos
-> CPP.ICode.ParseMonad.PM [CPP.ICode.Parser.SQL.AST.Statement]
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term