Changes between Version 19 and Version 20 of CIVLite


Ignore:
Timestamp:
02/28/24 21:30:36 (2 years ago)
Author:
siegel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CIVLite

    v19 v20  
    142142}
    143143}}}
     144
     145
     146== Source Information ==
     147
     148Source information goes in a separate meta-data file.   The lines and tokens correspond 1-1 with entires in the code file.  The entries in the code file specify source info.  E.g.,
     149
     150Code:
     151{{{
     152%x[%i]=17;
     153%y=0;
     154}}}
     155
     156Tokens are:
     157
     158line 1: `%x`  `[`  `%i`  `]`  `=`  `17`  `;`
     159line2: `%y`  `=`  `0`  `;`
     160
     161Meta-data file:
     162{{{
     1631.345.0  1.345.1  1.345.2  1.345.3  1.345.4  1.345.5  1.345.6
     1642.17.4  2.17.5  3.543.6  2.17.6
     165}}} 
     166
     167The structure 1.345.0 indicates "file #1, line 345, token #0".