
  TYPE
    clt$lexical_token_kind = (clc$unknown_token, clc$end_of_line_token,
          clc$space_token, clc$comment_token, clc$semicolon_token,
          clc$colon_token, clc$cybil_assign_token, clc$left_parenthesis_token,
          clc$right_parenthesis_token, clc$comma_token, clc$ellipsis_token,
          clc$dot_token, clc$query_token, clc$greater_than_token,
          clc$greater_equal_token, clc$less_than_token, clc$less_equal_token,
          clc$equal_token, clc$not_equal_token, clc$concatenate_token,
          clc$exponentiate_token, clc$multiply_token, clc$divide_token,
          clc$add_token, clc$subtract_token, clc$left_bracket_token,
          clc$reverse_slant_token, clc$right_bracket_token,
          clc$circumflex_token, clc$grave_accent_token, clc$left_brace_token,
          clc$vertical_bar_token, clc$right_brace_token, clc$tilde_token,
          clc$number_sign_token, clc$dollar_sign_token,
          clc$commercial_at_token, clc$underscore_token, clc$name_token,
          clc$cybil_name_token, clc$special_cybil_name_token,
          clc$simple_name_token, clc$cobol_name_token, clc$string_token,
          clc$unsigned_integer_token, clc$signed_integer_token,
          clc$unsigned_real_token, clc$signed_real_token);

  CONST
    clc$assign_token = clc$equal_token;

