mirror of
https://github.com/enso-org/enso.git
synced 2024-12-25 03:43:41 +03:00
841 B
841 B
layout | title | category | tags | order | |||
---|---|---|---|---|---|---|---|
developer-doc | Operator Resolution | parser |
|
6 |
Operator Resolution
Operator resolution is the process of resolving applications of operators into specific nodes on the AST.
Resolution Algorithm
The operator resolution process uses a version of the classic shunting-yard algorithm with modifications to support operator sections.
The actionables for this section are:
- Work out how to formulate this functionality efficiently in rust. The scala implementation can be found here.