Ignore comments in Fluent source code
Dependencies
- [2]
AAERM7PBAdd selector tests for the `fr` locale - [3]
2SITVDYWHandle common errors in Fluent code - [4]
6ABVDTXZImprove `fluent_embed_derive` test suite - [5]
XEEXWJLGAdd simple end-to-end test for selectors - [6]
VNSHGQYNSupport using glob paths in `localize` macro - [7]
CESJ4CTOMove macro-specific code into `macro_impl` module - [8]
QFPQZR4KRefactor `fluent_embed` - [9]
OWXLFLRMMerge `cli_macros` shim into `fluent_embed`
Change contents
- replacement in fluent_embed_derive/tests/selectors.rs at line 1
//! A basic end-to-end test for the example at https://projectfluent.org/fluent/guide/selectors.html//! End-to-end tests for the example at https://projectfluent.org/fluent/guide/selectors.html - replacement in fluent_embed_derive/tests/selectors.rs at line 9
pub enum Messages {pub enum Message { - replacement in fluent_embed_derive/tests/selectors.rs at line 13
impl Messages {impl Message { - replacement in fluent_embed_derive/tests/selectors.rs at line 41
let data = Messages::Emails { unread_emails };let data = Message::Emails { unread_emails }; - edit in fluent_embed_derive/tests/locale/en-US/selectors.ftl at line 1
# Selectors example from Fluent guide: https://projectfluent.org/fluent/guide/selectors.html - edit in fluent_embed_derive/src/fluent/mod.rs at line 110
Entry::Comment(_) => todo!(),Entry::GroupComment(_) => todo!(),Entry::ResourceComment(_) => todo!(), - edit in fluent_embed_derive/src/fluent/mod.rs at line 111
// Ignore commentsEntry::Comment(_) | Entry::GroupComment(_) | Entry::ResourceComment(_) => continue,