
This moves all code comprehension-related code to a new library, LibCodeComprehension. This also moves some types related to code comprehension tasks (such as autocomplete, find declaration) out of LibGUI and into LibCodeComprehension.
8 lines
80 B
C++
8 lines
80 B
C++
void foo(int x, char y);
|
|
|
|
void bar()
|
|
{
|
|
foo();
|
|
foo(123, 'b');
|
|
foo(
|
|
}
|