Enum fluent_syntax::ast::InlineExpression[][src]

pub enum InlineExpression<S> {
    StringLiteral {
        value: S,
    },
    NumberLiteral {
        value: S,
    },
    FunctionReference {
        id: Identifier<S>,
        arguments: CallArguments<S>,
    },
    MessageReference {
        id: Identifier<S>,
        attribute: Option<Identifier<S>>,
    },
    TermReference {
        id: Identifier<S>,
        attribute: Option<Identifier<S>>,
        arguments: Option<CallArguments<S>>,
    },
    VariableReference {
        id: Identifier<S>,
    },
    Placeable {
        expression: Box<Expression<S>>,
    },
}
Expand description

A subset of expressions which can be used as Placeable, selector, or in CallArguments.

Example

use fluent_syntax::parser;
use fluent_syntax::ast;

let ftl = r#"

key = { $emailCount }

"#;

let resource = parser::parse(ftl)
    .expect("Failed to parse an FTL resource.");

assert_eq!(
    resource,
    ast::Resource {
        body: vec![
            ast::Entry::Message(
                ast::Message {
                    id: ast::Identifier {
                        name: "key"
                    },
                    value: Some(ast::Pattern {
                        elements: vec![
                            ast::PatternElement::Placeable {
                                expression: ast::Expression::Inline(
                                    ast::InlineExpression::VariableReference {
                                        id: ast::Identifier {
                                            name: "emailCount"
                                        },
                                    }
                                )
                            },
                        ]
                    }),
                    attributes: vec![],
                    comment: None,
                }
            )
        ]
    }
);

Variants

StringLiteral

Fields

value: S

Single line string literal enclosed in ".

Example

use fluent_syntax::parser;
use fluent_syntax::ast;

let ftl = r#"

key = { "this is a literal" }

"#;

let resource = parser::parse(ftl)
    .expect("Failed to parse an FTL resource.");

assert_eq!(
    resource,
    ast::Resource {
        body: vec![
            ast::Entry::Message(
                ast::Message {
                    id: ast::Identifier {
                        name: "key"
                    },
                    value: Some(ast::Pattern {
                        elements: vec![
                            ast::PatternElement::Placeable {
                                expression: ast::Expression::Inline(
                                    ast::InlineExpression::StringLiteral {
                                        value: "this is a literal",
                                    }
                                )
                            },
                        ]
                    }),
                    attributes: vec![],
                    comment: None,
                }
            )
        ]
    }
);

NumberLiteral

Fields

value: S

A number literal.

Example

use fluent_syntax::parser;
use fluent_syntax::ast;

let ftl = r#"

key = { -0.5 }

"#;

let resource = parser::parse(ftl)
    .expect("Failed to parse an FTL resource.");

assert_eq!(
    resource,
    ast::Resource {
        body: vec![
            ast::Entry::Message(
                ast::Message {
                    id: ast::Identifier {
                        name: "key"
                    },
                    value: Some(ast::Pattern {
                        elements: vec![
                            ast::PatternElement::Placeable {
                                expression: ast::Expression::Inline(
                                    ast::InlineExpression::NumberLiteral {
                                        value: "-0.5",
                                    }
                                )
                            },
                        ]
                    }),
                    attributes: vec![],
                    comment: None,
                }
            )
        ]
    }
);

FunctionReference

Fields

id: Identifier<S>
arguments: CallArguments<S>

A function reference.

Example

use fluent_syntax::parser;
use fluent_syntax::ast;

let ftl = r#"

key = { FUNC() }

"#;

let resource = parser::parse(ftl)
    .expect("Failed to parse an FTL resource.");

assert_eq!(
    resource,
    ast::Resource {
        body: vec![
            ast::Entry::Message(
                ast::Message {
                    id: ast::Identifier {
                        name: "key"
                    },
                    value: Some(ast::Pattern {
                        elements: vec![
                            ast::PatternElement::Placeable {
                                expression: ast::Expression::Inline(
                                    ast::InlineExpression::FunctionReference {
                                        id: ast::Identifier {
                                            name: "FUNC"
                                        },
                                        arguments: ast::CallArguments::default(),
                                    }
                                )
                            },
                        ]
                    }),
                    attributes: vec![],
                    comment: None,
                }
            )
        ]
    }
);

MessageReference

Fields

id: Identifier<S>
attribute: Option<Identifier<S>>

A reference to another message.

Example

use fluent_syntax::parser;
use fluent_syntax::ast;

let ftl = r#"

key = { key2 }

"#;

let resource = parser::parse(ftl)
    .expect("Failed to parse an FTL resource.");

assert_eq!(
    resource,
    ast::Resource {
        body: vec![
            ast::Entry::Message(
                ast::Message {
                    id: ast::Identifier {
                        name: "key"
                    },
                    value: Some(ast::Pattern {
                        elements: vec![
                            ast::PatternElement::Placeable {
                                expression: ast::Expression::Inline(
                                    ast::InlineExpression::MessageReference {
                                        id: ast::Identifier {
                                            name: "key2"
                                        },
                                        attribute: None,
                                    }
                                )
                            },
                        ]
                    }),
                    attributes: vec![],
                    comment: None,
                }
            )
        ]
    }
);

TermReference

Fields

id: Identifier<S>
attribute: Option<Identifier<S>>
arguments: Option<CallArguments<S>>

A reference to a term.

Example

use fluent_syntax::parser;
use fluent_syntax::ast;

let ftl = r#"

key = { -brand-name }

"#;

let resource = parser::parse(ftl)
    .expect("Failed to parse an FTL resource.");

assert_eq!(
    resource,
    ast::Resource {
        body: vec![
            ast::Entry::Message(
                ast::Message {
                    id: ast::Identifier {
                        name: "key"
                    },
                    value: Some(ast::Pattern {
                        elements: vec![
                            ast::PatternElement::Placeable {
                                expression: ast::Expression::Inline(
                                    ast::InlineExpression::TermReference {
                                        id: ast::Identifier {
                                            name: "brand-name"
                                        },
                                        attribute: None,
                                        arguments: None,
                                    }
                                )
                            },
                        ]
                    }),
                    attributes: vec![],
                    comment: None,
                }
            )
        ]
    }
);

VariableReference

Fields

id: Identifier<S>

A reference to a variable.

Example

use fluent_syntax::parser;
use fluent_syntax::ast;

let ftl = r#"

key = { $var1 }

"#;

let resource = parser::parse(ftl)
    .expect("Failed to parse an FTL resource.");

assert_eq!(
    resource,
    ast::Resource {
        body: vec![
            ast::Entry::Message(
                ast::Message {
                    id: ast::Identifier {
                        name: "key"
                    },
                    value: Some(ast::Pattern {
                        elements: vec![
                            ast::PatternElement::Placeable {
                                expression: ast::Expression::Inline(
                                    ast::InlineExpression::VariableReference {
                                        id: ast::Identifier {
                                            name: "var1"
                                        },
                                    }
                                )
                            },
                        ]
                    }),
                    attributes: vec![],
                    comment: None,
                }
            )
        ]
    }
);

Placeable

Fields

expression: Box<Expression<S>>

A placeable which may contain another expression.

Example

use fluent_syntax::parser;
use fluent_syntax::ast;

let ftl = r#"

key = { { "placeable" } }

"#;

let resource = parser::parse(ftl)
    .expect("Failed to parse an FTL resource.");

assert_eq!(
    resource,
    ast::Resource {
        body: vec![
            ast::Entry::Message(
                ast::Message {
                    id: ast::Identifier {
                        name: "key"
                    },
                    value: Some(ast::Pattern {
                        elements: vec![
                            ast::PatternElement::Placeable {
                                expression: ast::Expression::Inline(
                                    ast::InlineExpression::Placeable {
                                        expression: Box::new(
                                            ast::Expression::Inline(
                                                ast::InlineExpression::StringLiteral {
                                                    value: "placeable"
                                                }
                                            )
                                        )
                                    }
                                )
                            },
                        ]
                    }),
                    attributes: vec![],
                    comment: None,
                }
            )
        ]
    }
);

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.