OLD | NEW |
1 // Common macros that we want to catch. | 1 // Common macros that we want to catch. |
2 #if PLATFORM(MAC) | 2 #if PLATFORM(MAC) |
3 #endif | 3 #endif |
4 #if CPU(X86) | 4 #if CPU(X86) |
5 #endif | 5 #endif |
6 #if OS(DARWIN) | 6 #if OS(MACOSX) |
7 #endif | 7 #endif |
8 #if COMPILER(CLANG) | 8 #if COMPILER(CLANG) |
9 #endif | 9 #endif |
10 #if ENABLE(FEATURE) | 10 #if ENABLE(FEATURE) |
11 #endif | 11 #endif |
12 #if HAVE(FEATURE) | 12 #if HAVE(FEATURE) |
13 #endif | 13 #endif |
14 #if USE(FEATURE) | 14 #if USE(FEATURE) |
15 #endif | 15 #endif |
16 #if COMPILER_SUPPORTS(FEATURE) | 16 #if COMPILER_SUPPORTS(FEATURE) |
17 #endif | 17 #endif |
18 #if COMPILER_QUIRK(FEATURE) | 18 #if COMPILER_QUIRK(FEATURE) |
19 #endif | 19 #endif |
20 | 20 |
21 // Indented. | 21 // Indented. |
22 #if 1 | 22 #if 1 |
23 #if PLATFORM(X) | 23 #if PLATFORM(X) |
24 #endif | 24 #endif |
25 #endif | 25 #endif |
26 | 26 |
27 // Conditionals, we don't evalute. We just check for the existence of the macro. | 27 // Conditionals, we don't evalute. We just check for the existence of the macro. |
28 #if defined(ignored) && PLATFORM(X) | 28 #if defined(ignored) && PLATFORM(X) |
29 #endif | 29 #endif |
OLD | NEW |