Differences From Artifact [91a3b7f2c4f61824]:
- File
polemy/layer.d
- 2010-11-21 09:53:48 - part of checkin [c316790569] on branch trunk - forgot to add layer.d (user: kinaba) [annotate]
To Artifact [79038e8ac0f7ba6a]:
- File
polemy/layer.d
- 2010-11-23 07:42:13 - part of checkin [6ac127ddd0] on branch trunk - new evaluator (user: kinaba) [annotate]
10 10
11 11 /// Type for the layer ID
12 12
13 13 alias string Layer;
14 14
15 15 enum : Layer
16 16 {
17 - SystemLayer = "(system)", /// Predefined layer for internal data
18 - ValueLayer = "@value", /// Predefined layer for normal run
19 - MacroLayer = "@macro", /// Predefined layer for macro run
17 + SystemLayer = "(system)", /// Predefined layer for internal data
18 + ValueLayer = "@value", /// Predefined layer for normal run
19 + MacroLayer = "@macro", /// Predefined layer for macro run
20 + RawMacroLayer = "(rawmacro)", /// Predefined layer for raw-macro run
20 21 }