Skip to content

Variant keys can now be numbers, identifiers or quoted text #118

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions spec/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -37,6 +37,17 @@
These issues have been fixed and the new test suite will help ensure the
correctness of the grammar in the future.

- Variant keys can now be numbers, identifiers or quoted text.

Previously, variant keys could either be numbers (`NumberExpressions`) or
text (`VariantNames`). Text keys allowed inline whitespace; the whitespace
at the extremes, however, was trimmed. Special characters like `{` or `[`
were forbidden, and no espace sequences were allowed either.

To fix this, variant keys can now be numbers (as before), identifiers
(`Identifier`) or quoted text (`StringExpressions`). The `VariantName`
AST node has been removed.

## 0.5.0 (January 31, 2018)

- Added terms. (#62, #85)
4 changes: 1 addition & 3 deletions spec/fluent.ebnf
Original file line number Diff line number Diff line change
@@ -60,8 +60,7 @@ VariantList ::= variant_list break_indent
variant_list ::= Variant* DefaultVariant Variant*
Variant ::= break_indent VariantKey inline_space? Pattern
DefaultVariant ::= break_indent "*" VariantKey inline_space? Pattern
VariantKey ::= "[" inline_space? (NumberExpression | VariantName) inline_space? "]"
VariantName ::= word (inline_space word)*
VariantKey ::= "[" inline_space? (NumberExpression | StringExpression | Identifier) inline_space? "]"

/* Identifiers */
Identifier ::= identifier
@@ -73,7 +72,6 @@ Function ::= [A-Z] [A-Z_?-]*
identifier ::= [a-zA-Z] [a-zA-Z0-9_-]*
comment_line ::= (line_end)
| ("\u0020" /.*/ line_end)
word ::= (regular_char - backslash - "}" - "{" - "]" - "[")+

/* Characters */
backslash ::= "\\"
7 changes: 0 additions & 7 deletions syntax/ast.mjs
Original file line number Diff line number Diff line change
@@ -191,13 +191,6 @@ export class Identifier extends SyntaxNode {
}
}

export class VariantName extends Identifier {
constructor(name) {
super(name);
this.type = "VariantName";
}
}

export class BaseComment extends Entry {
constructor(content) {
super();
26 changes: 2 additions & 24 deletions syntax/grammar.mjs
Original file line number Diff line number Diff line change
@@ -307,24 +307,13 @@ let VariantKey = defer(() =>
char("["),
maybe(inline_space),
either(
// Meh. It's not really an expression.
NumberExpression,
VariantName),
StringExpression,
Identifier),
maybe(inline_space),
char("]"))
.map(element_at(2)));

let VariantName = defer(() =>
sequence(
word,
repeat(
sequence(
inline_space,
word)))
.map(flatten(2))
.map(join)
.map(into(FTL.VariantName)));

/* ----------- */
/* Identifiers */

@@ -375,17 +364,6 @@ let comment_line = defer(() =>
.map(keep_abstract)
.map(join));

let word = defer(() =>
repeat1(
and(
not(char("[")),
not(char("]")),
not(char("{")),
not(char("}")),
not(backslash),
regular_char))
.map(join));

/* ---------- */
/* Characters */

4 changes: 2 additions & 2 deletions test/fixtures/leading_dots.json
Original file line number Diff line number Diff line change
@@ -366,7 +366,7 @@
{
"type": "Variant",
"key": {
"type": "VariantName",
"type": "Identifier",
"name": "one"
},
"value": {
@@ -383,7 +383,7 @@
{
"type": "Variant",
"key": {
"type": "VariantName",
"type": "Identifier",
"name": "other"
},
"value": {
2 changes: 1 addition & 1 deletion test/fixtures/member_expressions.json
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@
"name": "-term"
},
"key": {
"type": "VariantName",
"type": "Identifier",
"name": "case"
}
}
48 changes: 47 additions & 1 deletion test/fixtures/select_expressions.ftl
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ new-messages =

valid-selector =
{ -term.case ->
*[ many words ] value
*[key] value
}

invalid-selector =
@@ -23,3 +23,49 @@ empty-variant =
{ 1 ->
*[one] {""}
}


## Variant keys

valid-variant-key-identifier-simple =
{ 1 ->
*[key] value
}

valid-variant-key-identifier-padded =
{ 1 ->
*[ key ] value
}

# ERROR
invalid-variant-key-identifier-with-space-inside =
{ 1 ->
*[many words] value
}

# ERROR
invalid-variant-key-identifier-non-latin =
{ 1 ->
*[ĸəʎ] value
}

# ERROR
invalid-variant-key-number =
{ 1 ->
*[15 ducks] value
}

valid-variant-key-string-with-whitespace =
{ 1 ->
*[" many words "] value
}

valid-variant-key-string-non-latin =
{ 1 ->
*["keʎ"] value
}

valid-variant-key-string-start-with-digits =
{ 1 ->
*["15 ducks"] value
}
Loading