Files
gf-core/lib/resource-1.0/abstract/Idiom.gf
2006-05-16 13:07:02 +00:00

18 lines
425 B
Plaintext

--1 Idiomatic expressions
abstract Idiom = Cat ** {
-- This module defines constructions that are formed in fixed ways,
-- often different even in closely related languages.
fun
ImpersCl : VP -> Cl ; -- it rains
GenericCl : VP -> Cl ; -- one sleeps
ExistNP : NP -> Cl ; -- there is a house
ExistIP : IP -> QCl ; -- which houses are there
ProgrVP : VP -> VP ; -- be sleeping
}