├── .eslintrc ├── .gitattributes ├── .github └── workflows │ ├── deploy.yml │ └── test.yml ├── .gitignore ├── .nojekyll ├── .prettierrc ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── NOTICE ├── README.md ├── bin ├── ebnf.js └── parse.js ├── book.toml ├── guide ├── README.md ├── SUMMARY.md ├── attributes.md ├── builtins.md ├── comments.md ├── css │ └── custom.css ├── functions.md ├── hello.md ├── more.md ├── multiline.md ├── placeables.md ├── references.md ├── selectors.md ├── special.md ├── terms.md ├── text.md └── variables.md ├── lib ├── README.md ├── combinators.js ├── ebnf.js ├── mappers.js ├── parser.js ├── result.js ├── serializer.js ├── stream.js ├── visitor.js └── walker.js ├── package.json ├── spec ├── CHANGELOG.md ├── README.md ├── compatibility.md ├── errors.md ├── fluent.ebnf ├── recommendations.md └── valid.md ├── syntax ├── abstract.js ├── ast.js └── grammar.js └── test ├── bench.js ├── benchmarks └── gecko_strings.ftl ├── ebnf.js ├── fixtures ├── Makefile ├── any_char.ftl ├── any_char.json ├── astral.ftl ├── astral.json ├── call_expressions.ftl ├── call_expressions.json ├── callee_expressions.ftl ├── callee_expressions.json ├── comments.ftl ├── comments.json ├── cr_err_literal.ftl ├── cr_err_literal.json ├── cr_err_selector.ftl ├── cr_err_selector.json ├── cr_multikey.ftl ├── cr_multikey.json ├── cr_multilinevalue.ftl ├── cr_multilinevalue.json ├── crlf.ftl ├── crlf.json ├── eof_comment.ftl ├── eof_comment.json ├── eof_empty.ftl ├── eof_empty.json ├── eof_id.ftl ├── eof_id.json ├── eof_id_equals.ftl ├── eof_id_equals.json ├── eof_junk.ftl ├── eof_junk.json ├── eof_value.ftl ├── eof_value.json ├── escaped_characters.ftl ├── escaped_characters.json ├── junk.ftl ├── junk.json ├── leading_dots.ftl ├── leading_dots.json ├── literal_expressions.ftl ├── literal_expressions.json ├── member_expressions.ftl ├── member_expressions.json ├── messages.ftl ├── messages.json ├── mixed_entries.ftl ├── mixed_entries.json ├── multiline_values.ftl ├── multiline_values.json ├── numbers.ftl ├── numbers.json ├── obsolete.ftl ├── obsolete.json ├── placeables.ftl ├── placeables.json ├── reference_expressions.ftl ├── reference_expressions.json ├── select_expressions.ftl ├── select_expressions.json ├── select_indent.ftl ├── select_indent.json ├── sparse_entries.ftl ├── sparse_entries.json ├── special_chars.ftl ├── special_chars.json ├── tab.ftl ├── tab.json ├── term_parameters.ftl ├── term_parameters.json ├── terms.ftl ├── terms.json ├── variables.ftl ├── variables.json ├── variant_keys.ftl ├── variant_keys.json ├── whitespace_in_value.ftl ├── whitespace_in_value.json ├── zero_length.ftl └── zero_length.json ├── literals.js ├── parser.js ├── suite.js └── validator.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/README.md -------------------------------------------------------------------------------- /bin/ebnf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/bin/ebnf.js -------------------------------------------------------------------------------- /bin/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/bin/parse.js -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/book.toml -------------------------------------------------------------------------------- /guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/guide/README.md -------------------------------------------------------------------------------- /guide/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/guide/SUMMARY.md -------------------------------------------------------------------------------- /guide/attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/guide/attributes.md -------------------------------------------------------------------------------- /guide/builtins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/guide/builtins.md -------------------------------------------------------------------------------- /guide/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/guide/comments.md -------------------------------------------------------------------------------- /guide/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/guide/css/custom.css -------------------------------------------------------------------------------- /guide/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/guide/functions.md -------------------------------------------------------------------------------- /guide/hello.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/guide/hello.md -------------------------------------------------------------------------------- /guide/more.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/guide/more.md -------------------------------------------------------------------------------- /guide/multiline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/guide/multiline.md -------------------------------------------------------------------------------- /guide/placeables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/guide/placeables.md -------------------------------------------------------------------------------- /guide/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/guide/references.md -------------------------------------------------------------------------------- /guide/selectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/guide/selectors.md -------------------------------------------------------------------------------- /guide/special.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/guide/special.md -------------------------------------------------------------------------------- /guide/terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/guide/terms.md -------------------------------------------------------------------------------- /guide/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/guide/text.md -------------------------------------------------------------------------------- /guide/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/guide/variables.md -------------------------------------------------------------------------------- /lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/lib/README.md -------------------------------------------------------------------------------- /lib/combinators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/lib/combinators.js -------------------------------------------------------------------------------- /lib/ebnf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/lib/ebnf.js -------------------------------------------------------------------------------- /lib/mappers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/lib/mappers.js -------------------------------------------------------------------------------- /lib/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/lib/parser.js -------------------------------------------------------------------------------- /lib/result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/lib/result.js -------------------------------------------------------------------------------- /lib/serializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/lib/serializer.js -------------------------------------------------------------------------------- /lib/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/lib/stream.js -------------------------------------------------------------------------------- /lib/visitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/lib/visitor.js -------------------------------------------------------------------------------- /lib/walker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/lib/walker.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/package.json -------------------------------------------------------------------------------- /spec/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/spec/CHANGELOG.md -------------------------------------------------------------------------------- /spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/spec/README.md -------------------------------------------------------------------------------- /spec/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/spec/compatibility.md -------------------------------------------------------------------------------- /spec/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/spec/errors.md -------------------------------------------------------------------------------- /spec/fluent.ebnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/spec/fluent.ebnf -------------------------------------------------------------------------------- /spec/recommendations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/spec/recommendations.md -------------------------------------------------------------------------------- /spec/valid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/spec/valid.md -------------------------------------------------------------------------------- /syntax/abstract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/syntax/abstract.js -------------------------------------------------------------------------------- /syntax/ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/syntax/ast.js -------------------------------------------------------------------------------- /syntax/grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/syntax/grammar.js -------------------------------------------------------------------------------- /test/bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/bench.js -------------------------------------------------------------------------------- /test/benchmarks/gecko_strings.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/benchmarks/gecko_strings.ftl -------------------------------------------------------------------------------- /test/ebnf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/ebnf.js -------------------------------------------------------------------------------- /test/fixtures/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/Makefile -------------------------------------------------------------------------------- /test/fixtures/any_char.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/any_char.ftl -------------------------------------------------------------------------------- /test/fixtures/any_char.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/any_char.json -------------------------------------------------------------------------------- /test/fixtures/astral.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/astral.ftl -------------------------------------------------------------------------------- /test/fixtures/astral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/astral.json -------------------------------------------------------------------------------- /test/fixtures/call_expressions.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/call_expressions.ftl -------------------------------------------------------------------------------- /test/fixtures/call_expressions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/call_expressions.json -------------------------------------------------------------------------------- /test/fixtures/callee_expressions.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/callee_expressions.ftl -------------------------------------------------------------------------------- /test/fixtures/callee_expressions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/callee_expressions.json -------------------------------------------------------------------------------- /test/fixtures/comments.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/comments.ftl -------------------------------------------------------------------------------- /test/fixtures/comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/comments.json -------------------------------------------------------------------------------- /test/fixtures/cr_err_literal.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/cr_err_literal.ftl -------------------------------------------------------------------------------- /test/fixtures/cr_err_literal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/cr_err_literal.json -------------------------------------------------------------------------------- /test/fixtures/cr_err_selector.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/cr_err_selector.ftl -------------------------------------------------------------------------------- /test/fixtures/cr_err_selector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/cr_err_selector.json -------------------------------------------------------------------------------- /test/fixtures/cr_multikey.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/cr_multikey.ftl -------------------------------------------------------------------------------- /test/fixtures/cr_multikey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/cr_multikey.json -------------------------------------------------------------------------------- /test/fixtures/cr_multilinevalue.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/cr_multilinevalue.ftl -------------------------------------------------------------------------------- /test/fixtures/cr_multilinevalue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/cr_multilinevalue.json -------------------------------------------------------------------------------- /test/fixtures/crlf.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/crlf.ftl -------------------------------------------------------------------------------- /test/fixtures/crlf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/crlf.json -------------------------------------------------------------------------------- /test/fixtures/eof_comment.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/eof_comment.ftl -------------------------------------------------------------------------------- /test/fixtures/eof_comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/eof_comment.json -------------------------------------------------------------------------------- /test/fixtures/eof_empty.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/eof_empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/eof_empty.json -------------------------------------------------------------------------------- /test/fixtures/eof_id.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/eof_id.ftl -------------------------------------------------------------------------------- /test/fixtures/eof_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/eof_id.json -------------------------------------------------------------------------------- /test/fixtures/eof_id_equals.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/eof_id_equals.ftl -------------------------------------------------------------------------------- /test/fixtures/eof_id_equals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/eof_id_equals.json -------------------------------------------------------------------------------- /test/fixtures/eof_junk.ftl: -------------------------------------------------------------------------------- 1 | ### NOTE: Disable final newline insertion when editing this file. 2 | 3 | 000 -------------------------------------------------------------------------------- /test/fixtures/eof_junk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/eof_junk.json -------------------------------------------------------------------------------- /test/fixtures/eof_value.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/eof_value.ftl -------------------------------------------------------------------------------- /test/fixtures/eof_value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/eof_value.json -------------------------------------------------------------------------------- /test/fixtures/escaped_characters.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/escaped_characters.ftl -------------------------------------------------------------------------------- /test/fixtures/escaped_characters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/escaped_characters.json -------------------------------------------------------------------------------- /test/fixtures/junk.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/junk.ftl -------------------------------------------------------------------------------- /test/fixtures/junk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/junk.json -------------------------------------------------------------------------------- /test/fixtures/leading_dots.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/leading_dots.ftl -------------------------------------------------------------------------------- /test/fixtures/leading_dots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/leading_dots.json -------------------------------------------------------------------------------- /test/fixtures/literal_expressions.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/literal_expressions.ftl -------------------------------------------------------------------------------- /test/fixtures/literal_expressions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/literal_expressions.json -------------------------------------------------------------------------------- /test/fixtures/member_expressions.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/member_expressions.ftl -------------------------------------------------------------------------------- /test/fixtures/member_expressions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/member_expressions.json -------------------------------------------------------------------------------- /test/fixtures/messages.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/messages.ftl -------------------------------------------------------------------------------- /test/fixtures/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/messages.json -------------------------------------------------------------------------------- /test/fixtures/mixed_entries.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/mixed_entries.ftl -------------------------------------------------------------------------------- /test/fixtures/mixed_entries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/mixed_entries.json -------------------------------------------------------------------------------- /test/fixtures/multiline_values.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/multiline_values.ftl -------------------------------------------------------------------------------- /test/fixtures/multiline_values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/multiline_values.json -------------------------------------------------------------------------------- /test/fixtures/numbers.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/numbers.ftl -------------------------------------------------------------------------------- /test/fixtures/numbers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/numbers.json -------------------------------------------------------------------------------- /test/fixtures/obsolete.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/obsolete.ftl -------------------------------------------------------------------------------- /test/fixtures/obsolete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/obsolete.json -------------------------------------------------------------------------------- /test/fixtures/placeables.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/placeables.ftl -------------------------------------------------------------------------------- /test/fixtures/placeables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/placeables.json -------------------------------------------------------------------------------- /test/fixtures/reference_expressions.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/reference_expressions.ftl -------------------------------------------------------------------------------- /test/fixtures/reference_expressions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/reference_expressions.json -------------------------------------------------------------------------------- /test/fixtures/select_expressions.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/select_expressions.ftl -------------------------------------------------------------------------------- /test/fixtures/select_expressions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/select_expressions.json -------------------------------------------------------------------------------- /test/fixtures/select_indent.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/select_indent.ftl -------------------------------------------------------------------------------- /test/fixtures/select_indent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/select_indent.json -------------------------------------------------------------------------------- /test/fixtures/sparse_entries.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/sparse_entries.ftl -------------------------------------------------------------------------------- /test/fixtures/sparse_entries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/sparse_entries.json -------------------------------------------------------------------------------- /test/fixtures/special_chars.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/special_chars.ftl -------------------------------------------------------------------------------- /test/fixtures/special_chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/special_chars.json -------------------------------------------------------------------------------- /test/fixtures/tab.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/tab.ftl -------------------------------------------------------------------------------- /test/fixtures/tab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/tab.json -------------------------------------------------------------------------------- /test/fixtures/term_parameters.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/term_parameters.ftl -------------------------------------------------------------------------------- /test/fixtures/term_parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/term_parameters.json -------------------------------------------------------------------------------- /test/fixtures/terms.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/terms.ftl -------------------------------------------------------------------------------- /test/fixtures/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/terms.json -------------------------------------------------------------------------------- /test/fixtures/variables.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/variables.ftl -------------------------------------------------------------------------------- /test/fixtures/variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/variables.json -------------------------------------------------------------------------------- /test/fixtures/variant_keys.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/variant_keys.ftl -------------------------------------------------------------------------------- /test/fixtures/variant_keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/variant_keys.json -------------------------------------------------------------------------------- /test/fixtures/whitespace_in_value.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/whitespace_in_value.ftl -------------------------------------------------------------------------------- /test/fixtures/whitespace_in_value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/whitespace_in_value.json -------------------------------------------------------------------------------- /test/fixtures/zero_length.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/zero_length.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/fixtures/zero_length.json -------------------------------------------------------------------------------- /test/literals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/literals.js -------------------------------------------------------------------------------- /test/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/parser.js -------------------------------------------------------------------------------- /test/suite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/suite.js -------------------------------------------------------------------------------- /test/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfluent/fluent/HEAD/test/validator.js --------------------------------------------------------------------------------