Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import type ICppBaseSymbol from "./ICppBaseSymbol";
import type ICppFieldInfo from "./ICppFieldInfo";
/**
* Symbol representing a C++ struct type definition.
* In C++, structs are very similar to classes but with different default visibility.
*/
interface ICppStructSymbol extends ICppBaseSymbol {
/** Discriminator narrowed to "struct" */
readonly kind: "struct";
/** Map of field name to field metadata (only populated if SymbolTable was provided) */
readonly fields?: ReadonlyMap<string, ICppFieldInfo>;
}
export default ICppStructSymbol;
|