mirror of
https://github.com/enso-org/enso.git
synced 2024-12-18 22:01:51 +03:00
d1af25793a
Use the Rust parser rather than the Scala parser to parse Enso code in the IDE. Implements: - https://www.pivotaltracker.com/story/show/182975925 - https://www.pivotaltracker.com/story/show/182988419 - https://www.pivotaltracker.com/story/show/182970096 - https://www.pivotaltracker.com/story/show/182973659 - https://www.pivotaltracker.com/story/show/182974161 - https://www.pivotaltracker.com/story/show/182974205 There is additional functionality needed before the transition is fully-completed, however I think it's time for this to see review and testing, so I've opened separate issues. In rough order of urgency (these issues are also linked from the corresponding disabled tests): - #5573 - #5571 - #5572 - #5574 # Important Notes The implementation is based partly on translation, and partly on new analysis. Method- and operator-related shapes are translated to the old `Ast` variants, so that all the analysis applied to them doesn't need to be ported at this time. Everything else (mostly "macros" in the old AST) is implemented with new analysis.
41 lines
1.5 KiB
TOML
41 lines
1.5 KiB
TOML
[package]
|
|
name = "ide-view"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
ast = { path = "../language/ast/impl" }
|
|
parser = { path = "../language/parser" }
|
|
enso-config = { path = "../config" }
|
|
enso-frp = { path = "../../../lib/rust/frp" }
|
|
enso-prelude = { path = "../../../lib/rust/prelude" }
|
|
enso-shapely = { path = "../../../lib/rust/shapely" }
|
|
engine-protocol = { path = "../controller/engine-protocol" }
|
|
ensogl = { path = "../../../lib/rust/ensogl" }
|
|
ensogl-component = { path = "../../../lib/rust/ensogl/component" }
|
|
ensogl-gui-component = { path = "../../../lib/rust/ensogl/component/gui" }
|
|
ensogl-text = { path = "../../../lib/rust/ensogl/component/text" }
|
|
ensogl-text-msdf = { path = "../../../lib/rust/ensogl/component/text/src/font/msdf" }
|
|
ensogl-hardcoded-theme = { path = "../../../lib/rust/ensogl/app/theme/hardcoded" }
|
|
ide-view-component-browser = { path = "component-browser" }
|
|
ide-view-documentation = { path = "documentation" }
|
|
ide-view-graph-editor = { path = "graph-editor" }
|
|
span-tree = { path = "../language/span-tree" }
|
|
js-sys = { workspace = true }
|
|
multi-map = { workspace = true }
|
|
nalgebra = { workspace = true }
|
|
ordered-float = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
uuid = { version = "0.8", features = ["serde", "v4", "wasm-bindgen"] }
|
|
wasm-bindgen = { workspace = true }
|
|
welcome-screen = { path = "welcome-screen" }
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3.4"
|
|
features = []
|