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

  • Committer: Gustav Hartvigsson
  • Date: 2022-06-01 12:14:52 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20220601121452-ntu94w67q3dhhfeq
More work torwards inperementing the parser.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
  public class RootToken : Token {
4
4
    
5
5
    construct {
6
 
      this.priority = 0;
 
6
      this.priority = Prio.ASSIGNMENT;
7
7
      this.mandatory_num_child = 1;
8
8
      this.optional_num_child = 0;
9
9
    }