This repository has been archived on 2025-02-18. You can view files and clone it, but cannot push or open issues or pull requests.

77 lines
792 B
Plaintext
Raw Normal View History

2023-08-22 17:02:40 -04:00
==================
Comments
==================
# x = 1;
# unassigned_variable
x # xyz
---
(source_file
(comment)
(comment)
(expression
(identifier))
(comment))
2023-08-22 17:28:19 -04:00
==================
Identifiers
==================
variable_name
_unused_variable
__strange_format__
a
blahblah
x.x
---
(source_file
(expression
(identifier))
(expression
(identifier))
(expression
(identifier))
(expression
(identifier))
(expression
(identifier))
(expression
(identifier)))
==================
Operators
==================
+ - = / & |
---
(source_file
(expression
(operator)
(operator)
(operator)
(operator)
(operator)
(operator)))
==================
Expressions
==================
x_x = 1;
---
(source_file
(expression
(identifier))
(operator)
(integer)))