/vqdr/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/vqdr/trunk
1 by Gustav Hartvigsson
* Initial code - far from done
1
namespace VQDR.Expression {
2
  
3
  public abstract class ValueToken : Token {
4
    protected ValueToken (int position) {
5
      base (position);
6
    }
7
  }
8
  
9
  public static ValueToken? init_constant_token (long val, int position) {
10
    //return new ConstantValueToken (val, position);
11
    return null;
12
  }
13
  
14
  public static ValueToken? init_variable_token (string name, int position) {
15
    //return new VariableValueToken (name, position);
16
    return null;
17
  }
18
}