该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。
拉取镜像更新于 。
- 9月 18, 2020
-
-
由 Igor Drozdov 创作于
Sometimes we receive bufio.Scanner: token too long is the parsed string is too long Let's increase the buffer size
-
- 8月 31, 2020
-
-
由 Nick Thomas 创作于
-
- 8月 26, 2020
-
-
由 Patrick Bajao 创作于
RAM usage of parsing LSIF references are now back to normalcy and feature works. This removes the code in workhorse for determining whether parsing references is enabled or not. It'll now always be enabled.
-
- 7月 15, 2020
-
-
由 Patrick Bajao 创作于
In order to be able to "Find references" of a given range or definition, we need to be able to read `references` items from the LSIF file. This will then be written to the JSON file for each range via `references` property. The property will look something like: ``` "references": [ { "path": "main.go#L7" } ] ``` Each reference will be an object with `path` property. The `path` property will point to the exact line where it is being used. This is currently behind a feature flag (`code_navigation_references`) which will set `ProcessLsifReferences` header to `true` when enabled. If `false`, the `references` won't be read and generated.
-
- 5月 26, 2020
-
-
由 Igor Drozdov 创作于
Define Id type with custom marshalling which accepts either int or string, because some languages (for example, Javascript) define ids in LSIF as ints, but some languages (like Golang) use string type for ids It also changes int to uint32 for easier binary conversion
-
- 5月 21, 2020
-
-
由 Igor Drozdov 创作于
LSIF document is converted into multiple JSON files and archived as a ZIP file https://gitlab.com/gitlab-org/gitlab/-/issues/212384
-