-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changes
85 lines (65 loc) · 2.29 KB
/
Changes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
1.13 2016-05-16
Bug Fixes
* Unescaped left brace in regex is deprecated
Other
* Add Travis-CI
1.12 2015-07-21
Other
* Spelling in POD
* Fix Makefile and MANIFEST
1.11 2015-06-11
Other
* Convert to GIT
1.10 2013-08-03
New Features
* Parse::FSM::Error module to format error and warning messages.
1.09 2013-07-27
New Features
* Accumulate lines that end with backslash with following lines, so
that the complete set of continuation lines can be fed to the lexer.
Important to be able to detect cpp-like macro calls that spread across
lines.
* Append a \n at the end of the last input line of a file, if it was missing.
1.08 2013-07-25
Bug Fixes
* Wrong handling of backslash in strings.
New Features
* Allow special token handlers to be changed by a subclass
1.07 2013-05-28
Bug Fixes
* Fix: Use of each() on hash after insertion without resetting hash
iterator results in undefined behavior, Perl interpreter:
0x8c8010 at blib/lib/Parse/FSM.pm line 401.
1.06 2013-01-06
Other
* Lexical $_ is deprecated in Perl 5.17, remove usage from code
1.05 2013-01-04
Other
* Lexical $_ is deprecated in Perl 5.17, remove usage from code
1.04 2013-01-01
Other
* Lexical $_ is deprecated in Perl 5.17, remove usage from code
1.03 2012-12-30
Other
* Lexical $_ is deprecated in Perl 5.17, remove usage from code
1.02 2011-04-21
Bug Fixes
* Tests failed on case-sensitive file systems (data and Data
directories are the same in Windows, but not in Unix)
1.01 2011-04-17
Bug Fixes
* FSM-error.t failed on case-sensitive file systems (data and Data
directories are the same in Windows, but not in Unix)
1.00 2011-04-16
Spin-off of the deterministic top-down parser based on a pre-computed
finite state machine that was developped for the CPU::Z80::Assembler
module.
New Features
* parse a yacc-like BNF grammar and generate the parser module.
Note: the Parse::FSM::Parser module used to parse the BNF grammar
is generated using the primitive add_rule from Parse::FSM.
* Lexer module based on Perl 5.10 regular expressions, to be subclassed.
The Parse::FSM::Lexer provides the primitives to allow recursive
file includes and keeping track of current file and line number. A
subclass can override the tokenizer() method that matches the next
token from a string.