1 /* BEGIN INCLUDE FILE ... decoded_token_types.incl.pl1 */
 2 
 3 /* This array maps token types into declaration types suitable
 4    for passing to convert. */
 5 
 6 dcl       decoded_type(33:62) bit(36) aligned int static options(constant) init
 7           (         "000100000000000000000000000000000000"b,          /* bit_string */
 8                     "000010000000000000000000000000000000"b,          /* char_string */
 9                     (13) (36) "0"b,
10                     "010000000000000000000101000001100000"b,          /* fixed_bin */
11                     "010000000000000000000101000001100000"b,          /* bin_integer */
12                     "010000000000000000000101000010100000"b,          /* fixed_dec */
13                     "010000000000000000000101000001100000"b,          /* dec_integer */
14                     "001000000000000000000101000001100000"b,          /* float_bin */
15                     "0"b,
16                     "001000000000000000000101000010100000"b,          /* float_dec */
17                     "0"b,
18                     "010000000000000000000101000001010000"b,          /* i_fixed_bin */
19                     "010000000000000000000101000001010000"b,          /* i_bin_integer */
20                     "010000000000000000000101000010010000"b,          /* i_fixed_dec */
21                     "010000000000000000000101000010010000"b,          /* i_dec_integer */
22                     "001000000000000000000101000001010000"b,          /* i_float_bin */
23                     "0"b,
24                     "001000000000000000000101000010010000"b);         /* i_float_dec */
25 
26 /* END INCLUDE FILE ... decoded_token_types.incl.pl1 */