-- UUAGC 0.9.5 (Expression.ag) module Expression where import UU.Scanner.Position(Pos) -- Expression -------------------------------------------------- {- alternatives: alternative Expression: child pos : {Pos} child txt : {String} -} data Expression = Expression (Pos) (String)