Skip to content

Commit

Permalink
Last fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuem committed Nov 20, 2023
1 parent 2da7748 commit c782918
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ class Gender extends SubMessage {
/// clauses. Each clause is expected to be a list whose first element is a
/// variable name and whose second element is either a [String] or
/// a list of strings and [Message] or [VariableSubstitution].
Gender.from(super.mainArgument, super.clauses, [Message? super.parent])
: super.from();
Gender.from(super.mainArgument, super.clauses, [super.parent]) : super.from();

Message? female;
Message? male;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ import 'submessage.dart';

class Plural extends SubMessage {
Plural() : super.from('', [], null);
Plural.from(super.mainArgument, super.clauses, [Message? super.parent])
: super.from();
Plural.from(super.mainArgument, super.clauses, [super.parent]) : super.from();

Message? zero;
Message? one;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ class Select extends SubMessage {
/// clauses. Each clause is expected to be a list whose first element is a
/// variable name and whose second element is either a String or
/// a list of strings and [Message]s or [VariableSubstitution]s.
Select.from(super.mainArgument, super.clauses, [Message? super.parent])
: super.from();
Select.from(super.mainArgument, super.clauses, [super.parent]) : super.from();

Map<String, Message> cases = <String, Message>{};

Expand Down

0 comments on commit c782918

Please sign in to comment.