Skip to content

Commit

Permalink
add "be(8) + named", with the semantics "be called"
Browse files Browse the repository at this point in the history
  • Loading branch information
ekoontz committed Aug 3, 2024
1 parent 32fb5af commit 71682ee
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion resources/english/lexicon/verbs.edn
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@
:exceptions exceptions}

;; TODO: add passive "was+{:modal :past-participle}" e.g. "the mouse was caught by the cat"


(;; the 'is' or 'was' in 'is born' or 'was born'
let [subj (atom {:animate? true})]
Expand All @@ -97,6 +96,24 @@
:surface "born"}
:3 []}
:exceptions exceptions})

(;; the 'is' or 'was' in 'is named' or 'was named'
let [subj (atom :top)]
{:sense 8
:reflexive? false
:aux? false
:sem {:pred :be-called
:subj subj
:obj :none
:iobj :none}
:subcat {:1 {:sem subj}
:2 {:cat :verb
:infl :past-simple
:phrasal? false
:canonical "name"
:subcat {:1 {:top :top} :2 []}}
:3 []}
:exceptions exceptions})
])


Expand Down Expand Up @@ -589,6 +606,7 @@
[{:exceptions exceptions
:sem {:pred :overcome}}])
"overwhelm" [{:sem {:pred :overwhelm}}]
"name" [{:sem {:pred :name}}]
"need" [;; need to leave
{:sense 1
:sem {:pred :need}
Expand Down

0 comments on commit 71682ee

Please sign in to comment.