Create a preprocessor conditional
| 921 | |
| 922 | // Create a preprocessor conditional |
| 923 | static PreprocessorConditional* CreateConditional(Preprocessor* /*preprocessor*/) |
| 924 | { |
| 925 | // TODO(tfoley): allocate these more intelligently (for example, |
| 926 | // pool them on the `Preprocessor`. |
| 927 | return new PreprocessorConditional(); |
| 928 | } |
| 929 | |
| 930 | // Destroy a preprocessor conditional. |
| 931 | static void DestroyConditional(PreprocessorConditional* conditional) |