Verb ↔ Smuggling Interface #
Promotes the bridge from Verb's lexical fields to the smuggling
operators in Syntax/Minimalism/Movement/Smuggling.lean. These
are general operations on Verb reused across argument-structure
studies (QI, locative inversion, passives), not study-local helpers.
Composition #
Verb.derivedUnaccusative → Verb.voiceFor : VoiceHead
Verb.complementType → Verb.hasComplement : Bool
↓
Verb.derivedQI = licensesQI ∘ voiceFor ∘ hasComplement
voiceFor consults Verb.derivedUnaccusative (which itself reads
voiceType.assignsTheta when present), keeping the chain rooted in the
deeper Voice-as-not-introducing-external-argument characterization rather
than the surface unaccusative : Bool annotation.
A verb has a syntactic complement iff its complementType is anything
other than .none. Used by smuggling derivations to check that there
is something to smuggle.
Equations
- v.hasComplement = (v.complementType != ComplementType.none)
Instances For
The Voice head determined by a verb's derived unaccusativity:
non-thematic (anticausative) for unaccusatives, agentive for unergatives.
Reads derivedUnaccusative, which consults voiceType.assignsTheta
when present, so the bridge is grounded in the Voice-as-not-introducing-
external-argument characterization ([Kra96]).
Equations
- v.voiceFor = if v.derivedUnaccusative = true then Minimalist.voiceAnticausative else Minimalist.voiceAgent
Instances For
Derived prediction: does the verb license quotative inversion?
Composes voiceFor and hasComplement through licensesQI
([Sto26c], §4: smuggling requires non-phase Voice + a
complement to smuggle).
Equations
Instances For
A verb licenses QI iff its derived Voice permits smuggling and it
has a complement to smuggle. Direct unfolding from licensesQI's
definition.
Unaccusative verbs project non-thematic (anticausative) Voice.
Unergative verbs project agentive Voice.
An unaccusative verb with a complement licenses QI. The two independent properties — non-phase Voice and complement availability — suffice.
An unergative verb cannot license QI (regardless of complement), because agentive Voice blocks smuggling.