/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/token.vala

  • Committer: Gustav Hartvigsson
  • Date: 2021-09-11 15:17:37 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20210911151737-dd3g47oi04s029co
* Fixed valadoc stuff.
* moved ValueToken factory stuff into the ValueToken class.
* added an almost generic way of using the ValueToken factory stuff.
* Fixed some spelling errors.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
    public const int MAX_TOTAL_ITERATIONS = 5000;
20
20
    
21
21
    
22
 
    /** Operator precedence and associativity
 
22
    /**
 
23
     * Operator precedence and associativity
23
24
     * 
24
25
     * higher number is higher priority, and is to be done befroe those
25
26
     * with lower number.
79
80
      }
80
81
    }
81
82
 
82
 
    /** Generation to use to get the root with {@link #getParent} */
 
83
    /** Generation to use to get the root with @link parent */
83
84
    protected const int ROOT_GENERATION = int.MAX;
84
85
    
85
86
    /* ********************************************************************** */