/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/value/value_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:
9
9
      return new ConstantValueToken (val, position);
10
10
    }
11
11
    
12
 
    public static ValueToken? init_variable_token (string name, int32 position) {
 
12
    public static ValueToken? init_variable_token (string name,
 
13
                                                   int32 position) {
13
14
      return new VariableValueToken (name, position);
14
15
    }
15
16