You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add doc_comment column to symbols (3,084 documented symbols on benchmark
repo) and new type_members table for interface/type-alias properties
(12,052 members extracted). Agents can now query type shapes and symbol
documentation without reading files.
SCHEMA_VERSION bumped to 2.
|`constants.ts`| Shared constants — e.g. `LANG_MAP`|
@@ -185,6 +185,19 @@ All tables use `STRICT` mode. Tables marked with `WITHOUT ROWID` store data dire
185
185
| is_exported | INTEGER | 1 if exported |
186
186
| is_default_export | INTEGER | 1 if default export |
187
187
| members | TEXT | JSON array of enum members (NULL for non-enums). Each entry: `{"name":"…","value":"…"}` (value omitted for implicit-value enums) |
188
+
| doc_comment | TEXT | Leading JSDoc comment text (cleaned: `*` prefixes stripped, trimmed). NULL when absent. Preserves `@deprecated`, `@param`, etc. tags |
189
+
190
+
### `type_members` — Properties and methods of interfaces and object-literal types (`STRICT`)
0 commit comments