mirror of
https://github.com/enso-org/enso.git
synced 2024-12-23 08:53:31 +03:00
1f8675a031
Fixes #7468 The fix is pretty simple: we reuse the existing functionality for importing stuff and generating expressions. It fixes issues with `Nothing` or `Report_Unmatched` types. https://github.com/enso-org/enso/assets/6566674/4e7addf9-2175-4f2a-a571-4ef823de5cb0 While debugging, I found it easier to work with a suggestion database when exported to some external format. Hence, I implemented serde serialization support for database entries and also a new debug shortcut <kbd>ctrl</kbd>+<kbd>shift</kbd>+<kbd>u</kbd> to dump all entries to the console.
24 lines
715 B
TOML
24 lines
715 B
TOML
[package]
|
|
name = "enso-doc-parser"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <enso-dev@enso.org>"]
|
|
edition = "2021"
|
|
description = "Enso Documentation Parser."
|
|
readme = "README.md"
|
|
homepage = "https://github.com/enso-org/enso"
|
|
repository = "https://github.com/enso-org/enso"
|
|
license-file = "../../LICENSE"
|
|
|
|
[dependencies]
|
|
enso-parser = { path = ".." }
|
|
enso-prelude = { path = "../../prelude" }
|
|
enso-profiler = { path = "../../profiler" }
|
|
enso-reflect = { path = "../../reflect" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
[dev-dependencies]
|
|
enso-metamodel = { path = "../../metamodel", features = ["rust"] }
|
|
enso-metamodel-lexpr = { path = "../../metamodel/lexpr" }
|
|
lexpr = "0.2.6"
|
|
pretty_assertions = "1.4"
|