34 lines
838 B
Text
34 lines
838 B
Text
---
|
|
source: tests/file_tests.rs
|
|
expression: ast
|
|
info:
|
|
input: "Hi there! My name is {{= name }} {{= lastname }}"
|
|
context:
|
|
name: Hemera
|
|
lastname: Green
|
|
---
|
|
TemplateAst {
|
|
root: [
|
|
StaticContent(
|
|
[Content]"Hi there! My name is" (0..20),
|
|
),
|
|
Interpolation {
|
|
prev_whitespace_content: Some(
|
|
[Whitespace]" " (20..21),
|
|
),
|
|
expression: VariableAccess(
|
|
[Ident]"name" (25..29),
|
|
),
|
|
post_whitespace_content: Some(
|
|
[Whitespace]" " (32..33),
|
|
),
|
|
},
|
|
Interpolation {
|
|
prev_whitespace_content: None,
|
|
expression: VariableAccess(
|
|
[Ident]"lastname" (37..45),
|
|
),
|
|
post_whitespace_content: None,
|
|
},
|
|
],
|
|
}
|