index
:
tools.nes
main
Tools for NES/Famicom development.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
xixanta
/
src
/
parser.rs
Commit message (
Expand
)
Author
Age
Files
Lines
*
xixanta: add context from macro expansions
Miquel Sabaté Solà
2026-02-02
1
-0
/
+15
*
Allow constants in asan:reserve statements
Miquel Sabaté Solà
2025-12-15
1
-29
/
+60
*
Forbid to .include something which is not a file
Miquel Sabaté Solà
2025-12-15
1
-17
/
+17
*
Do not allow empty strings on .include
Miquel Sabaté Solà
2025-12-15
1
-0
/
+24
*
Allow asan:reserve to receive an usize
Miquel Sabaté Solà
2025-12-14
1
-16
/
+24
*
parser: Allow .include inside of .scope
Miquel Sabaté Solà
2025-09-02
1
-6
/
+21
*
parser: Avoid unwrap crash on weird quoted strings
Miquel Sabaté Solà
2025-09-02
1
-1
/
+1
*
assembler: Add support for asan:reserve,ignore
Miquel Sabaté Solà
2025-09-02
1
-79
/
+163
*
parser: Add asan:reserve and asan:weak support
Miquel Sabaté Solà
2025-08-28
1
-19
/
+210
*
Apply suggested style fixes from clippy
Miquel Sabaté Solà
2025-08-17
1
-13
/
+11
*
parser: Fix disambiguation paren on first argument
Miquel Sabaté Solà
2025-08-17
1
-3
/
+99
*
Add support for a single equal sign operator
Miquel Sabaté Solà
2025-01-23
1
-1
/
+4
*
Remove dependency to the rand crate
Miquel Sabaté Solà
2025-01-22
1
-3
/
+10
*
Be more explicit on empty identifiers
Miquel Sabaté Solà
2025-01-21
1
-6
/
+3
*
Allow dot characters on identifiers
Miquel Sabaté Solà
2025-01-21
1
-19
/
+67
*
Introduce looking ahead when parsing literals
Miquel Sabaté Solà
2025-01-21
1
-192
/
+295
*
Track the level of recursive calls
Miquel Sabaté Solà
2025-01-20
1
-18
/
+35
*
Whitelist valid identifier characters
Miquel Sabaté Solà
2025-01-16
1
-3
/
+13
*
Implement .ifdef/.ifndef statements
Miquel Sabaté Solà
2025-01-16
1
-3
/
+11
*
Implement .if/.elsif/.else statements
Miquel Sabaté Solà
2025-01-16
1
-30
/
+104
*
Add boolean operators
Miquel Sabaté Solà
2025-01-16
1
-4
/
+22
*
Fix error with strings containing equal operator
Miquel Sabaté Solà
2025-01-15
1
-10
/
+7
*
Allow semicolons inside of strings
Miquel Sabaté Solà
2025-01-15
1
-9
/
+43
*
Simplify string arguments for control statements
Miquel Sabaté Solà
2025-01-15
1
-7
/
+25
*
Disambiguate unary/binary operators
Miquel Sabaté Solà
2025-01-15
1
-1
/
+8
*
Move check for ASCII-only strings into the parser
Miquel Sabaté Solà
2025-01-15
1
-0
/
+4
*
Split 'parse_expression' into more functions
Miquel Sabaté Solà
2025-01-15
1
-70
/
+86
*
Parse a string literal as a single object
Miquel Sabaté Solà
2025-01-15
1
-0
/
+47
*
Improve the message on bad file includes
Miquel Sabaté Solà
2025-01-10
1
-14
/
+6
*
Rename SourceInfo::working_directory to directory
Miquel Sabaté Solà
2025-01-09
1
-4
/
+3
*
Merge all error types into a single one
Miquel Sabaté Solà
2025-01-09
1
-42
/
+49
*
Implement the .include statement
Miquel Sabaté Solà
2025-01-09
1
-86
/
+310
*
Restrict literal characters further
Miquel Sabaté Solà
2025-01-09
1
-2
/
+25
*
Prevent numeric literals from having spaces
Miquel Sabaté Solà
2025-01-09
1
-4
/
+25
*
Add the .repeat control statement
Miquel Sabaté Solà
2025-01-07
1
-4
/
+94
*
parser: Move out the parsing of control statements
Miquel Sabaté Solà
2025-01-05
1
-50
/
+63
*
Implement block bodies inside of the assembler
Miquel Sabaté Solà
2025-01-05
1
-13
/
+15
*
parser: Implement block bodies
Miquel Sabaté Solà
2025-01-04
1
-106
/
+269
*
parser: Add support for operators
Miquel Sabaté Solà
2024-12-19
1
-12
/
+178
*
parser: Allow for parenthesized expressions
Miquel Sabaté Solà
2024-12-19
1
-0
/
+43
*
parser: Fix crash on non-ASCII char literals
Miquel Sabaté Solà
2024-12-13
1
-3
/
+3
*
Add support for character literals
Miquel Sabaté Solà
2024-12-12
1
-2
/
+76
*
Don't rely on the identifier for control identity
Miquel Sabaté Solà
2024-12-12
1
-11
/
+59
*
Initial support for branching
Miquel Sabaté Solà
2024-12-12
1
-0
/
+2
*
Re-work the support on labels, variables and jumps
Miquel Sabaté Solà
2024-12-12
1
-22
/
+27
*
Allow for relative jumps at the parser level
Miquel Sabaté Solà
2024-12-12
1
-20
/
+153
*
Adapt the assembler to the changes on the parser
Miquel Sabaté Solà
2024-12-12
1
-232
/
+347
*
ci: Add fuzzy testing to the parser
Miquel Sabaté Solà
2024-12-12
1
-2
/
+0
*
Re-work the parser from scratch
Miquel Sabaté Solà
2024-12-12
1
-0
/
+1496