/vqdr/trunk

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