added an item
[external/ragel.git] / TODO
1 Might be a good idea to add in some protection against using up all of a
2 system's memory. This protection could then be removed by people when someone
3 is sure they want to use a lot of memory.
4
5 fbreak should advance the current char. Depreciate fbreak and add
6     fctl_break;
7     fctl_return <expr>;
8     fctl_goto <label>;
9
10 It should be possible to import/export definitions.
11
12 If a scanner can be optimized into a pure state machine, maybe permit it to be
13 referenced as a machine definition. Alternately: inline scanners with an
14 explicit exit pattern.
15
16 The split codegen needs a profiler connected to a graph partitioning algorithm.
17
18 Die a graceful death when rlcodegen -F receives large alphabets.
19
20 It's not currently possible to have more than one machine in a single function
21 because of label conflicts. Labels should have a unique prefix.
22
23 Emit a warning when a subtraction has no effect.
24
25 Emit a warning when unnamed priorities are used in longest match machines.
26 These priorities may unexpectedly interact across longest-match items. Changing
27 the language such that unwated interaction cannot happen would require naming
28 longest-match items.
29
30 Testing facilities: Quick easy way to query which strings are accepted.
31 Enumerate all accepted strings. From Nicholas Maxwell Lester.
32
33 Add more examples, add more tests and write more documentation.
34
35 A debugger would be nice. Ragel could emit a special debug version that
36 prompted for debug commands that allowed the user to step through the machine
37 and get details about where they are in their RL.
38
39 Frontend should allow the redefinition of fsm section delimiters.
40
41 Do more to obscure ragel's private variables. Just a leading underscore is not
42 enough. Maybe something more like __ri__.
43
44 Some talk about capturing data:
45
46 Separate tokstart/tokend from the backtracking.  One var for preservation,
47 called preserve.  Write delcarations;  produces the necessary variables used by
48 ragel.  Move pattern start pattern end concepts into the general?  The
49 variables which may need to influence the preserve is dependent on the state.
50 States have a concept of which variables are in use.  Can be used for length
51 restrictions.  If there is an exit pattern, it is the explicit way out,
52 otherwise the start state and all final states are a way out.