/vqdr/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/vqdr/trunk

« back to all changes in this revision

Viewing changes to src/libvqdr/function/function_token.vala

  • Committer: Gustav Hartvigsson
  • Date: 2022-06-01 18:16:29 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20220601181629-meq45diu7dh8iied
Made sure that no text rows exeed 80 columns.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
    // We only store the type, as that is what is important.
19
19
    private static Gee.HashMap<string, Type?> _allowed_functions;
20
20
    
21
 
    protected const int64 UNDEFINED = int64.MIN + 1; //+1 so that I can still use int64.MIN_VALUE.
 
21
    // +1 so that I can still use int64.MIN_VALUE.
 
22
    protected const int64 UNDEFINED = int64.MIN + 1; 
22
23
    /** Right arrow */
23
24
    protected const string CH_RARR = "\u2192";
24
25
    /** Left arrow */
72
73
    /** Truncated output: equal */
73
74
    protected const string SYM_TRUNK_PART_EQUAL = CH_EQUAL; //"="
74
75
    /** Truncated output: begin */
75
 
    protected const string SYM_TRUNK_BEGIN = SYM_BEGIN + SYM_TRUNK_PART_ELLIPSIS + SYM_TRUNK_PART_EQUAL; //"[...="
 
76
    protected const string SYM_TRUNK_BEGIN = SYM_BEGIN
 
77
                                           + SYM_TRUNK_PART_ELLIPSIS
 
78
                                           + SYM_TRUNK_PART_EQUAL; //"[...="
76
79
    /** Truncated output: end */
77
80
    protected const string SYM_TRUNK_END = SYM_END; //"]"
78
81