mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 20:35:07 +00:00

... and performs preprocessing on the source code before parsing. To support this, we are now able to keep track of multiple files in the autocomplete engine. We re-parse a file whenever it is edited.
12 lines
129 B
C
12 lines
129 B
C
int func();
|
|
|
|
#define USE_VAR2
|
|
|
|
struct StructInHeader {
|
|
int var1;
|
|
#ifdef USE_VAR2
|
|
int var2;
|
|
#else
|
|
int var3;
|
|
#endif
|
|
};
|