index
:
paca
main
Unnamed repository; edit this file 'description' to name the repository.
External SSH Git service user
summary
refs
log
tree
commit
diff
log msg
author
committer
range
Commit message (
Expand
)
Author
Age
Files
Lines
*
src/paca.mjs: Improve implementation of interpretMetacharacters
HEAD
main
EuAndreh
2025-08-01
2
-41
/
+220
*
Makefile: Install like a Node.js package
EuAndreh
2025-07-31
2
-6
/
+10
*
tests/paca.mjs: Add WIP tests
EuAndreh
2025-07-20
1
-0
/
+9
*
src/paca.mjs: Rename buildDFA -> toDFA
EuAndreh
2025-07-20
2
-22
/
+25
*
src/paca.mjs: Support returning multiple options from `performTransition()`
EuAndreh
2025-07-20
1
-5
/
+6
*
Add initial support for caret and dollar metacharacters
EuAndreh
2025-07-20
2
-22
/
+200
*
.gitignore: Remove trailing slash from node_modules rule
EuAndreh
2025-07-17
1
-1
/
+1
*
src/paca.mjs: Rename {start,end}ID => {start,end}
EuAndreh
2025-07-17
1
-44
/
+42
*
Do away with the "nextID" attribute
EuAndreh
2025-07-17
2
-53
/
+10
*
Support searching in the NFA using the metacharacters.
EuAndreh
2025-07-16
2
-1
/
+123
*
Compress character class when compiling NFA.
EuAndreh
2025-07-16
2
-3
/
+174
*
Build NFA nodes for "." and "class" metacharacters
EuAndreh
2025-07-16
2
-38
/
+305
*
Differentiate an "operator" from a "meta" character
EuAndreh
2025-07-16
2
-24
/
+72
*
Only tolerate escaping of special chars
EuAndreh
2025-07-15
2
-38
/
+59
*
Support tokenizing `.` wildcard operator.
EuAndreh
2025-07-15
2
-5
/
+29
*
Support tokenizing `^` and `$` anchors
EuAndreh
2025-07-15
2
-1
/
+242
*
tests/paca.mjs (test_shouldConcat): Also hoist import, definition and positio...
EuAndreh
2025-07-15
1
-35
/
+35
*
tests/paca.mjs (test_compileNFA): Add test case for empty regex
EuAndreh
2025-07-15
1
-0
/
+14
*
src/paca.mjs (PRECEDENCE): Add "range" and "class" keys
EuAndreh
2025-07-15
1
-0
/
+2
*
tests/paca.mjs (test_escapingStateStep): Add tests for `escapingStateStep()`
EuAndreh
2025-07-15
1
-0
/
+36
*
Use `shouldConcat()` in decision of `escapingStateSte()`
EuAndreh
2025-07-15
2
-11
/
+15
*
Support tokenizing character class expressions [a-z]
EuAndreh
2025-07-15
2
-5
/
+349
*
tests/paca.mjs (test_rangeStateStep): Finish test cases for rangeStateStep
EuAndreh
2025-07-13
1
-0
/
+139
*
src/paca.mjs (rangeStateStep): Fix typo in SyntaxError message
EuAndreh
2025-07-13
1
-1
/
+1
*
src/paca.mjs (rangeStateStep): Refine indentation and alignment
EuAndreh
2025-07-13
1
-3
/
+3
*
src/paca.mjs ({escaping,range}StateStep): Add leading underscore to ignored args
EuAndreh
2025-07-13
1
-2
/
+2
*
src/paca.mjs (rangeStateStep): Return ValueError when range number decreases
EuAndreh
2025-07-13
1
-1
/
+2
*
Add first test for `rangeStateStep()`
EuAndreh
2025-07-13
1
-0
/
+17
*
Hoist `numFromDigits()` before its usage
EuAndreh
2025-07-13
2
-22
/
+22
*
Add "[" to the possible characters of TRANSITION_FNS.
EuAndreh
2025-07-13
2
-0
/
+30
*
Add simple test for TRANSITION_FNS
EuAndreh
2025-07-13
2
-2
/
+35
*
Revert "src/paca.mjs: Temporarily export internal functions"
EuAndreh
2025-07-12
1
-4
/
+4
*
src/paca.mjs: Temporarily export internal functions
EuAndreh
2025-07-12
1
-4
/
+4
*
src/paca.mjs (tokenizeRegexStep): Simplify body
EuAndreh
2025-07-11
1
-105
/
+127
*
tests/paca.mjs (test_tokenizeRegexStep): Simplify table values
EuAndreh
2025-07-11
1
-704
/
+322
*
src/paca.mjs (tokenizeRegexStep): Fix missing concat when escaping
EuAndreh
2025-07-11
1
-5
/
+8
*
tests/paca.mjs: Add tests for numFromDigits()
EuAndreh
2025-07-11
1
-0
/
+17
*
src/paca.mjs: Remove calls to arr.concat([]) with unneeded wrapping singleton...
EuAndreh
2025-07-11
1
-14
/
+6
*
src/paca.mjs (tokenizeRegexStep): Support tokenizing range exps {m,n}
EuAndreh
2025-07-11
2
-2
/
+638
*
src/paca.mjs (tokenizeRegexStep): Include `context` key in reduced state
EuAndreh
2025-07-11
2
-121
/
+152
*
src/paca.mjs: Move error detection from tokenizeRegexStep => tokenizeRegex
EuAndreh
2025-07-11
2
-26
/
+34
*
tests/paca.mjs (test_tokenizeRegexStep): Compute `char` and `index`
EuAndreh
2025-07-11
1
-20
/
+7
*
src/paca.mjs: Remove unused repeat(3) import
EuAndreh
2025-07-11
1
-1
/
+1
*
Makefile: Minor fixes of indentation and alignment
EuAndreh
2025-07-09
1
-3
/
+3
*
Finish implementation of unit tests
EuAndreh
2025-07-09
2
-31
/
+881
*
Implement v0 version of NFA and DFA; WIP tests
EuAndreh
2025-07-07
6
-0
/
+1898
*
Initial empty commit
EuAndreh
2025-06-30
0
-0
/
+0