/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
libvqdr_source_files = []
2
3
libvqdr_source_files += files([
4
  'context.vala',
5
  'dice.vala',
64 by Gustav Hartvigsson
[General] Major refactoring. Utils -> Vee nenaming.
6
  'exceptions.vala',
1 by Gustav Hartvigsson
* Initial code - far from done
7
  'root_token.vala',
8
  'token.vala',
9
  'variable.vala',
43 by Gustav Hartvigsson
* Added err_print_ln.
10
  'parser.vala',
1 by Gustav Hartvigsson
* Initial code - far from done
11
  
35 by Gustav Hartvigsson
a few things: FastNumbers, simplifications and AbstractPoolToken.
12
  'function/abstract_pool_token.vala',
1 by Gustav Hartvigsson
* Initial code - far from done
13
  'function/function_token.vala',
32 by Gustav Hartvigsson
Added RollAndKeepFunctionToken.
14
  'function/roll_and_keep_functon_token.vala',
19 by Gustav Hartvigsson
Added Round Up and Round Down function classes.
15
  'function/round_up_function_token.vala',
26 by Gustav Hartvigsson
* Fixed the "allowed function token type" map...
16
  'function/round_down_function_token.vala',
1 by Gustav Hartvigsson
* Initial code - far from done
17
  
18
  'operator/add_operator_token.vala',
23 by Gustav Hartvigsson
* Added DiceOperatiorToken
19
  'operator/dice_operator_token.vala',
1 by Gustav Hartvigsson
* Initial code - far from done
20
  'operator/divide_operator_token.vala',
21
  'operator/multiply_operator_token.vala',
22
  'operator/operator_token.vala',
23
  'operator/subtract_operator_token.vala',
24
  'operator/unary_operator.vala',
25
  
26
  'value/value_token.vala',
27
  'value/variable_value_token.vala',
28
  'value/constant_value_token.vala',
29
])
30
31
32
subdir_done ()