/vqdr/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/vqdr/trunk
64 by Gustav Hartvigsson
[General] Major refactoring. Utils -> Vee nenaming.
1
namespace VQDR {
1 by Gustav Hartvigsson
* Initial code - far from done
2
  public errordomain ArgError {
3
    INVALID_ARGUMENT,
54 by Gustav Hartvigsson
More work torwards inperementing the parser.
4
    INDEX_OUT_OF_BOUNDS;
1 by Gustav Hartvigsson
* Initial code - far from done
5
  }
64 by Gustav Hartvigsson
[General] Major refactoring. Utils -> Vee nenaming.
6
  
54 by Gustav Hartvigsson
More work torwards inperementing the parser.
7
  public errordomain OperandError {
8
    MISSING_OPERAND;
9
  }
64 by Gustav Hartvigsson
[General] Major refactoring. Utils -> Vee nenaming.
10
  
1 by Gustav Hartvigsson
* Initial code - far from done
11
  public errordomain ParseError {
12
    INVALID_CHARECTER,
54 by Gustav Hartvigsson
More work torwards inperementing the parser.
13
    NOT_READY,
14
    ALLREADY_PARSED,
15
    INVALID_DATA;
1 by Gustav Hartvigsson
* Initial code - far from done
16
  }
64 by Gustav Hartvigsson
[General] Major refactoring. Utils -> Vee nenaming.
17
  
1 by Gustav Hartvigsson
* Initial code - far from done
18
  public errordomain EvaluationError {
19
    MISSING_TOKEN,
54 by Gustav Hartvigsson
More work torwards inperementing the parser.
20
    INVALID_TOKEN;
1 by Gustav Hartvigsson
* Initial code - far from done
21
  }
64 by Gustav Hartvigsson
[General] Major refactoring. Utils -> Vee nenaming.
22
  
32 by Gustav Hartvigsson
Added RollAndKeepFunctionToken.
23
  public errordomain ParamError {
54 by Gustav Hartvigsson
More work torwards inperementing the parser.
24
    OUT_OF_BOUNDS;
32 by Gustav Hartvigsson
Added RollAndKeepFunctionToken.
25
  }
35 by Gustav Hartvigsson
a few things: FastNumbers, simplifications and AbstractPoolToken.
26
64 by Gustav Hartvigsson
[General] Major refactoring. Utils -> Vee nenaming.
27
  
35 by Gustav Hartvigsson
a few things: FastNumbers, simplifications and AbstractPoolToken.
28
  public errordomain  LoopError {
29
    TO_LONG,
54 by Gustav Hartvigsson
More work torwards inperementing the parser.
30
    INFINITE;
35 by Gustav Hartvigsson
a few things: FastNumbers, simplifications and AbstractPoolToken.
31
  }
1 by Gustav Hartvigsson
* Initial code - far from done
32
}