summaryrefslogtreecommitdiff
path: root/support/texlab/src/syntax/latex/snapshots/texlab__syntax__latex__lexer__tests__command_with_star.snap
blob: 41310edaa115eadacf6cba79414fcace1eed5ffb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
source: src/syntax/latex/lexer.rs
expression: "verify(r#\"\\section*{Foo}\"#)"

---
[
    (
        SECTION_NAME,
        "\\section*",
    ),
    (
        L_CURLY,
        "{",
    ),
    (
        WORD,
        "Foo",
    ),
    (
        R_CURLY,
        "}",
    ),
]