This repository has been archived on 2024-06-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coffee.pygments/tests/snippets/jsx/test_arrow_function_attribute.txt
Flavio Curella 092bf9537b
Add JSX lexer (#2524)
Co-authored-by: Jean Abou-Samra <jean@abou-samra.fr>
2023-09-26 16:54:49 +02:00

25 lines
639 B
Text

---input---
<button onClick={e => e.preventDefault ()} />
---tokens---
'<' Punctuation
'button' Name.Tag
' ' Text.Whitespace
'onClick' Name.Attribute
'=' Operator
'{' Punctuation
'e' Name.Other
' ' Text.Whitespace
'=>' Punctuation
' ' Text.Whitespace
'e' Name.Other
'.' Punctuation
'preventDefault' Name.Other
' ' Text.Whitespace
'(' Punctuation
')' Punctuation
'}' Punctuation
' ' Text.Whitespace
'/' Punctuation
'>' Punctuation
'\n' Text.Whitespace