Commit 8aca949 1 parent 2814407 commit 8aca949 Copy full SHA for 8aca949
File tree 2 files changed +10
-3
lines changed
2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -937,13 +937,19 @@ class ExpressionMapping {
937
937
nextExp.text == "off" ||
938
938
nextExp.text == "1" ||
939
939
nextExp.text == "0" )) {
940
- fontFeatures.add (FontFeature (exp.text,
940
+ try {
941
+ fontFeatures.add (FontFeature (exp.text,
941
942
nextExp.text == "on" || nextExp.text == "1" ? 1 : 0 ));
943
+ } catch (_) {}
942
944
} else {
943
- fontFeatures.add (FontFeature .enable (exp.text));
945
+ try {
946
+ fontFeatures.add (FontFeature .enable (exp.text));
947
+ } catch (_) {}
944
948
}
945
949
} else {
946
- fontFeatures.add (FontFeature .enable (exp.text));
950
+ try {
951
+ fontFeatures.add (FontFeature .enable (exp.text));
952
+ } catch (_) {}
947
953
}
948
954
}
949
955
}
Original file line number Diff line number Diff line change @@ -590,6 +590,7 @@ extension MergeBorders on Border? {
590
590
}
591
591
592
592
enum ListStyleType {
593
+ initial ('initial' ),
593
594
arabicIndic ('arabic-indic' ),
594
595
armenian ('armenian' ),
595
596
lowerArmenian ('lower-armenian' ),
You can’t perform that action at this time.
0 commit comments