File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -84,6 +84,7 @@ export type Clause =
84
84
| { type : "vocative" ; call : string ; addressee : NounPhrase }
85
85
| { type : "dependent" ; conjunction : Word ; clause : Clause } ;
86
86
export type Preposition = {
87
+ adverb : Array < Word > ;
87
88
preposition : Word ;
88
89
object : NounPhrase ;
89
90
} ;
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import { TranslationTodoError } from "./error.ts";
5
5
import { unemphasized } from "./word.ts" ;
6
6
7
7
export function preposition (
8
- preposition : TokiPona . Preposition ,
8
+ _preposition : TokiPona . Preposition ,
9
9
) : Output < English . Preposition > {
10
10
throw new TranslationTodoError ( "preposition" ) ;
11
11
}
@@ -14,6 +14,7 @@ export function nounAsPreposition(
14
14
preposition : string ,
15
15
) : English . Preposition {
16
16
return {
17
+ adverb : [ ] ,
17
18
preposition : unemphasized ( preposition ) ,
18
19
object : phrase ,
19
20
} ;
You can’t perform that action at this time.
0 commit comments