24 lines
505 B
Text
24 lines
505 B
Text
---
|
|
source: tests/file_tests.rs
|
|
expression: ast
|
|
info:
|
|
input: "Hello! I'm {{= name }}"
|
|
context:
|
|
name: Hemera
|
|
---
|
|
TemplateAst {
|
|
root: [
|
|
StaticContent(
|
|
[Content]"Hello! I'm" (0..10),
|
|
),
|
|
Interpolation {
|
|
prev_whitespace_content: Some(
|
|
[Whitespace]" " (10..11),
|
|
),
|
|
expression: VariableAccess(
|
|
[Ident]"name" (15..19),
|
|
),
|
|
post_whitespace_content: None,
|
|
},
|
|
],
|
|
}
|