File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -44,7 +44,6 @@ export type AdjectivePhrase =
4444 type : "compound" ;
4545 conjunction : string ;
4646 adjectives : ReadonlyArray < AdjectivePhrase > ;
47- emphasis : boolean ;
4847 } > ;
4948export type Complement =
5049 | Readonly < { type : "noun" ; noun : NounPhrase } >
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ function adjectivePhrase(
105105 case "compound" :
106106 if ( modifier . adverbs . length === 0 ) {
107107 return {
108- adjective : { ...adjective , emphasis : adjective . emphasis || emphasis } ,
108+ adjective : { ...adjective } ,
109109 inWayPhrase : modifier . inWayPhrase ,
110110 } ;
111111 } else {
@@ -415,7 +415,6 @@ export function multiplePhrases(
415415 type : "compound" ,
416416 conjunction,
417417 adjectives : phrase . map ( ( { adjective } ) => adjective ) ,
418- emphasis : false ,
419418 } ,
420419 inWayPhrase : null ,
421420 } ;
You can’t perform that action at this time.
0 commit comments