Overview
Comment: | s_expressions-atom_refs: new package for atom references, taken out from Atom_Buffers |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
4627abed579fb132599256bb4af72732 |
User & Date: | nat on 2014-05-10 20:43:18 |
Other Links: | manifest | tags |
Context
2014-05-11
| ||
20:04 | s_expressions-interpreters: add a String-based command addition, since it's the overwhelmingly most common use case check-in: 179da1f3db user: nat tags: trunk | |
2014-05-10
| ||
20:43 | s_expressions-atom_refs: new package for atom references, taken out from Atom_Buffers check-in: 4627abed57 user: nat tags: trunk | |
2014-05-08
| ||
18:36 | Move atom comparison function from Natools.S_Expressions.Interpreters to Natools.S_Expressions check-in: 6f257a4f4d user: nat tags: trunk | |
Changes
Modified src/natools-s_expressions-atom_buffers.ads from [8b05d08348] to [977a8a6da9].
︙ | |||
18 19 20 21 22 23 24 | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | - - + - - - - - | -- Natools.S_Expressions.Atom_Buffers implements an unbounded Atom designed -- -- to be used as an input buffer, accumulating data and extracting it as a -- -- single Atom object. -- -- It also provides an individual Octet accessor, used in parser internal -- -- recursive buffer. -- ------------------------------------------------------------------------------ |
︙ |
Added src/natools-s_expressions-atom_refs.ads version [6020b8b107].
|
Modified src/natools-s_expressions-interpreters.ads from [1b48f8fb9a] to [4923890aab].
︙ | |||
24 25 26 27 28 29 30 | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | - + | -- Formal types represent common objets for all the command, Shared_State -- -- begin read/write while Shared_Context is read-only. -- ------------------------------------------------------------------------------ with Natools.S_Expressions.Lockable; private with Ada.Containers.Indefinite_Ordered_Maps; |
︙ | |||
117 118 119 120 121 122 123 | 117 118 119 120 121 122 123 124 125 126 127 | - + | package Command_Maps is new Ada.Containers.Indefinite_Ordered_Maps (Atom, Command'Class, Less_Than); type Interpreter is new Command with record Commands : Command_Maps.Map; Max_Length : Count := 0; |