File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -84,6 +84,7 @@ export type Clause =
8484 | { type : "vocative" ; call : string ; addressee : NounPhrase }
8585 | { type : "dependent" ; conjunction : Word ; clause : Clause } ;
8686export type Preposition = {
87+ adverb : Array < Word > ;
8788 preposition : Word ;
8889 object : NounPhrase ;
8990} ;
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import { TranslationTodoError } from "./error.ts";
55import { unemphasized } from "./word.ts" ;
66
77export function preposition (
8- preposition : TokiPona . Preposition ,
8+ _preposition : TokiPona . Preposition ,
99) : Output < English . Preposition > {
1010 throw new TranslationTodoError ( "preposition" ) ;
1111}
@@ -14,6 +14,7 @@ export function nounAsPreposition(
1414 preposition : string ,
1515) : English . Preposition {
1616 return {
17+ adverb : [ ] ,
1718 preposition : unemphasized ( preposition ) ,
1819 object : phrase ,
1920 } ;
You can’t perform that action at this time.
0 commit comments