/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/operator/operator_token.vala

  • Committer: Gustav Hartvigsson
  • Date: 2022-06-01 12:30:01 UTC
  • mfrom: (52.1.3 int64)
  • Revision ID: gustav.hartvigsson@gmail.com-20220601123001-b5xs60wwym810hg1
Merged: lp:~gustav.hartvigsson/vqdr/int64

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
namespace VQDR.Expression {
4
4
  public abstract class OperatorToken : Token {
5
5
    
6
 
    protected OperatorToken (int position) {
 
6
    protected OperatorToken (int32 position) {
7
7
      base (position);
8
8
    }
9
9
    
10
10
    public static OperatorToken? init_token (string name,
11
 
                                             int position)
 
11
                                             int32 position)
12
12
                                             throws ParseError {
13
13
      switch (name) {
14
14
        case "+":