mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 16:15:41 +01:00
Update twig.test.ts
This commit is contained in:
parent
de76be4e6c
commit
e1e946ac65
1 changed files with 33 additions and 0 deletions
|
|
@ -734,6 +734,15 @@ testTokenization(
|
||||||
tokens: [{ startIndex: 0, type: 'comment.twig' }]
|
tokens: [{ startIndex: 0, type: 'comment.twig' }]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
line: 'test {# Hello World! #}',
|
||||||
|
tokens: [
|
||||||
|
{ startIndex: 0, type: '' },
|
||||||
|
{ startIndex: 5, type: 'comment.twig' }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
line: '{#Hello World!#}',
|
line: '{#Hello World!#}',
|
||||||
|
|
@ -860,6 +869,19 @@ testTokenization(
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
line: 'test {{ foo }}',
|
||||||
|
tokens: [
|
||||||
|
{ startIndex: 0, type: '' },
|
||||||
|
{ startIndex: 5, type: 'delimiter.twig' },
|
||||||
|
{ startIndex: 7, type: '' },
|
||||||
|
{ startIndex: 8, type: 'variable.twig' },
|
||||||
|
{ startIndex: 11, type: '' },
|
||||||
|
{ startIndex: 12, type: 'delimiter.twig' }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
line: '{{ foo(42) }}',
|
line: '{{ foo(42) }}',
|
||||||
|
|
@ -962,6 +984,17 @@ testTokenization(
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
line: 'test {% %}',
|
||||||
|
tokens: [
|
||||||
|
{ startIndex: 0, type: '' },
|
||||||
|
{ startIndex: 5, type: 'delimiter.twig' },
|
||||||
|
{ startIndex: 7, type: '' },
|
||||||
|
{ startIndex: 8, type: 'delimiter.twig' }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
line: '{% for item in navigation %}',
|
line: '{% for item in navigation %}',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue