CurryInfo: coosy-3.1.0 / Coosy.ShowObserve.constructTermD

definition: Info
 
constructTermD :: EventID -> EventID -> Trace -> Term
constructTermD _ _ [] = UnEval
constructTermD parentRef seekArgNr (Demand argNr ref parent _:events) 
   | argNr == seekArgNr && parent == parentRef
   =  constructTermV ref events
   | otherwise = constructTermD parentRef seekArgNr events
constructTermD parentRef seekArgNr (Value _ _ _ _ _:events) 
   = constructTermD parentRef seekArgNr events
constructTermD parentRef seekArgNr (Fun _ _ _:events) 
   = constructTermD parentRef seekArgNr events
constructTermD parentRef seekArgNr (LogVar _ _ _:events) 
   = constructTermD parentRef seekArgNr events
constructTermD parentRef seekArgNr (Separator:events) 
   = Black $ constructTermD parentRef seekArgNr events
demand: Info
 argument 3
deterministic: Info
 deterministic operation
failfree: Info
 <FAILING>
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_,{[]}) |-> {UnEval} || (_,_,{:}) |-> _}
name: Info
 constructTermD
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Prelude.Int -> Prelude.Int -> [Coosy.Trace.Event] -> Term
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term