Skip to content

Commit a83cf05

Browse files
committed
fix
1 parent 069cdcc commit a83cf05

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/translator/clause.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ function phraseClause(
5656
type: "adjective",
5757
adjective: phrase.adjective,
5858
},
59+
contentClause: null,
5960
object: null,
6061
objectComplement: null,
6162
preposition: nullableAsArray(phrase.inWayPhrase)

src/translator/verb.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,13 +196,15 @@ export function verb(
196196
...partialVerb,
197197
type: "default",
198198
verb,
199+
contentClause: null,
199200
hideVerb: false,
200201
}));
201202
} else {
202203
return new ArrayResult([{
203204
...partialVerb,
204-
verb: { ...partialVerb, first: null },
205205
type: "default",
206+
verb: { ...partialVerb, first: null },
207+
contentClause: null,
206208
hideVerb: false,
207209
}]);
208210
}

0 commit comments

Comments
 (0)